diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/hephaestus.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix index ee3d128..2f73818 100644 --- a/host/hephaestus.nix +++ b/host/hephaestus.nix @@ -4,6 +4,7 @@ imports = [ ./hardware/hephaestus.nix ./software/desktop + ./software/server/build.nix ]; boot = { @@ -27,10 +28,14 @@ networking = { hostName = "hephaestus"; firewall.enable = false; + networkmanager.enable = true; }; - services.xserver.videoDrivers = [ "nvidia" ]; - hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11; + services.xserver = { + videoDrivers = [ "nvidia" ]; + }; + + hardware.nvidia.package = pkgs.linuxPackages.nvidia_x11_beta; networking.wireguard.interfaces = { wg0 = { @@ -50,5 +55,7 @@ }; }; + console.earlySetup = true; + system.stateVersion = "21.05"; } |