diff options
Diffstat (limited to 'hosts/caladan')
-rw-r--r-- | hosts/caladan/default.nix | 2 | ||||
-rw-r--r-- | hosts/caladan/hardware-configuration.nix | 16 | ||||
-rw-r--r-- | hosts/caladan/services.nix | 2 |
3 files changed, 19 insertions, 1 deletions
diff --git a/hosts/caladan/default.nix b/hosts/caladan/default.nix index fc39609..22d1f5a 100644 --- a/hosts/caladan/default.nix +++ b/hosts/caladan/default.nix @@ -5,7 +5,7 @@ "kernel.hostname" = "caladan.bitgnome.net"; "kernel.split_lock_mitigate" = 0; # https://lwn.net/Articles/911219/ }; - kernelPackages = pkgs.linuxPackages_6_15; + kernelPackages = pkgs.linuxPackages_6_16; #kernelParams = [ # "amdgpu.ppfeaturemask=0xfffd3fff" # "split_lock_detect=off" diff --git a/hosts/caladan/hardware-configuration.nix b/hosts/caladan/hardware-configuration.nix index 74852d5..302606c 100644 --- a/hosts/caladan/hardware-configuration.nix +++ b/hosts/caladan/hardware-configuration.nix @@ -21,6 +21,22 @@ MOZ_DISABLE_RDD_SANDBOX = "1"; }; + fileSystems."/mnt/downloads" = { + device = "192.168.1.2:/srv/caladan/downloads"; + fsType = "nfs"; + options = [ + "nfsvers=4.2" + ]; + }; + + fileSystems."/mnt/www" = { + device = "192.168.1.2:/srv/caladan/www"; + fsType = "nfs"; + options = [ + "nfsvers=4.2" + ]; + }; + hardware = { bluetooth.enable = true; diff --git a/hosts/caladan/services.nix b/hosts/caladan/services.nix index 4644188..1970be2 100644 --- a/hosts/caladan/services.nix +++ b/hosts/caladan/services.nix @@ -10,6 +10,8 @@ iperf3.openFirewall = true; + nfs.server.enable = true; + printing.enable = true; #smartd = let my_email_addr = "nipsy@bitgnome.net"; in { |