diff --git a/modules/hosts/test-nix.nix b/modules/hosts/test-nix.nix index e064547..c194b0d 100644 --- a/modules/hosts/test-nix.nix +++ b/modules/hosts/test-nix.nix @@ -18,16 +18,10 @@ in modules = with inputs.self.modules; [ inputs.home-manager.nixosModules.home-manager nixos."${username}" - nixos.lxc - # nixos.sudo nixos.zsh nixos.docker nixos.step-client { - users.users."${username}" = { - extraGroups = [ "docker" ]; - }; - home-manager.users."${username}" = { # imports = with inputs.self.modules.homeManager; [ # step-client diff --git a/modules/programs/sudo.nix b/modules/programs/sudo.nix deleted file mode 100644 index 535f4d6..0000000 --- a/modules/programs/sudo.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ inputs, ... }: { - flake.modules.nixos.sudo = { pkgs, lib, ... }: { - security.sudo = { - enable = true; - extraRules = [{ - groups = [ "wheel" ]; - commands = [ - { - command = "ALL"; - options = [ "NOPASSWD" ]; - } - ]; - }]; - }; - }; -} \ No newline at end of file