This commit is contained in:
John Lancaster
2026-03-14 11:38:51 -05:00
parent fe71c9c3eb
commit d60a52edda
2 changed files with 0 additions and 22 deletions

View File

@@ -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

View File

@@ -1,16 +0,0 @@
{ inputs, ... }: {
flake.modules.nixos.sudo = { pkgs, lib, ... }: {
security.sudo = {
enable = true;
extraRules = [{
groups = [ "wheel" ];
commands = [
{
command = "ALL";
options = [ "NOPASSWD" ];
}
];
}];
};
};
}