From 04692c33f26784c916565f4e4cd8127b7231742f Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Tue, 30 Jun 2026 20:55:53 +0000 Subject: [PATCH] Update hosts/server/configuration.nix --- hosts/server/configuration.nix | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 50dc85e..91d3761 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -17,7 +17,7 @@ # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. boot.supportedFilesystems = [ "zfs" ]; - boot.zfs.enabled = true; + #boot.zfs.enabled = true; # Mount server data #fileSystems."/srv" = { # device = "/dev/disk/by-label/server-data"; @@ -32,9 +32,9 @@ #}; #Add sym links to data on users home folder -system.userActivationScripts.createDockerSymlink.text = '' - ln -sf /srv/scripts /home/nixos/scripts -''; +#system.userActivationScripts.createDockerSymlink.text = '' +# ln -sf /srv/scripts /home/nixos/scripts +#''; #system.userActivationScripts.createSetupSymlink.text = '' # ln -sf /mnt/docker-persistent-data/setup /home/nixos/setup #''; @@ -49,17 +49,17 @@ services.nfs.server = { security.sudo = { enable = true; - extraRules = [ - { - users = [ "nixos" ]; - commands = [ - { - command = "/run/current-system/sw/bin/rsync"; - options = [ "NOPASSWD" ]; - } - ]; - } - ]; +# extraRules = [ +# { +# users = [ "nixos" ]; +# commands = [ +# { +# command = "/run/current-system/sw/bin/rsync"; +# options = [ "NOPASSWD" ]; +# } +# ]; +# } +# ]; };