diff options
author | Adrian Kummerlaender | 2021-07-15 20:49:50 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-08-19 23:40:42 +0200 |
commit | 725db6480cbac8a8e9da1b527bd391ec3d64f5b6 (patch) | |
tree | ebea81a1b5a1e25475ced08ee5712480f4e24a03 /host | |
parent | 28441393eb1fe79e00d7c110b51462cd699f6862 (diff) | |
download | nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar.gz nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar.bz2 nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar.lz nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar.xz nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.tar.zst nixos_system-725db6480cbac8a8e9da1b527bd391ec3d64f5b6.zip |
Update hephaestus config
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"; } |