From d60a52eddaad550cfc941f68b3b2f1b556557760 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sat, 14 Mar 2026 11:38:51 -0500 Subject: [PATCH] prune --- modules/hosts/test-nix.nix | 6 ------ modules/programs/sudo.nix | 16 ---------------- 2 files changed, 22 deletions(-) delete mode 100644 modules/programs/sudo.nix 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