From 0e55287332a0c230d918ca8ced97fdeda47df24c Mon Sep 17 00:00:00 2001 From: Seven Of Aces Date: Sun, 4 Aug 2024 09:04:31 -0700 Subject: [PATCH] add hostname and opengl to rogue --- hosts/rogue/nixos/configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/rogue/nixos/configuration.nix b/hosts/rogue/nixos/configuration.nix index e339aa2..56f15c2 100644 --- a/hosts/rogue/nixos/configuration.nix +++ b/hosts/rogue/nixos/configuration.nix @@ -18,7 +18,7 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "nixos"; # Define your hostname. + networking.hostName = "rogue"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Configure network proxy if necessary @@ -132,5 +132,12 @@ # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "24.05"; # Did you read the comment? + + hardware.opengl = { + enable = true; + ## radv: an open-source Vulkan driver from freedesktop + driSupport = true; + driSupport32Bit = true; + }; }