summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2021-07-15 20:49:50 +0200
committerAdrian Kummerlaender2021-08-19 23:40:42 +0200
commit725db6480cbac8a8e9da1b527bd391ec3d64f5b6 (patch)
treeebea81a1b5a1e25475ced08ee5712480f4e24a03
parent28441393eb1fe79e00d7c110b51462cd699f6862 (diff)
downloadnixos_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
-rw-r--r--host/hephaestus.nix11
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";
}