diff --git a/provision/hosts/bulwark/configuration.nix b/provision/hosts/bulwark/configuration.nix index 352dab57..54b863f7 100644 --- a/provision/hosts/bulwark/configuration.nix +++ b/provision/hosts/bulwark/configuration.nix @@ -10,15 +10,6 @@ networking.firewall.checkReversePath = "loose"; networking.firewall.enable = false; - # Password-less root - security.sudo.extraRules = [{ - users = [ "${user}" ]; - commands = [{ - command = "ALL" ; - options= [ "NOPASSWD" ]; - }]; - }]; - environment.systemPackages = with pkgs; [ ]; diff --git a/provision/hosts/kestrel/configuration.nix b/provision/hosts/kestrel/configuration.nix index 4d3b32af..c2fa1cd3 100644 --- a/provision/hosts/kestrel/configuration.nix +++ b/provision/hosts/kestrel/configuration.nix @@ -15,15 +15,6 @@ # Enable docker virtualisation.docker.enable = true; virtualisation.docker.storageDriver = "btrfs"; - - # Password-less root - security.sudo.extraRules = [{ - users = [ "${user}" ]; - commands = [{ - command = "ALL" ; - options= [ "NOPASSWD" ]; - }]; - }]; environment.systemPackages = with pkgs; [ distrobox # Platform for creating and managing Linux distribution images. diff --git a/provision/hosts/shivan/configuration.nix b/provision/hosts/shivan/configuration.nix index a9b69d17..47578228 100644 --- a/provision/hosts/shivan/configuration.nix +++ b/provision/hosts/shivan/configuration.nix @@ -15,15 +15,6 @@ # Enable docker virtualisation.docker.enable = true; virtualisation.docker.storageDriver = "btrfs"; - - # Password-less root - security.sudo.extraRules = [{ - users = [ "${user}" ]; - commands = [{ - command = "ALL" ; - options= [ "NOPASSWD" ]; - }]; - }]; environment.systemPackages = with pkgs; [ distrobox # Platform for creating and managing Linux distribution images.