prune
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
{ inputs, ... }: {
|
||||
flake.modules.nixos.sudo = { pkgs, lib, ... }: {
|
||||
security.sudo = {
|
||||
enable = true;
|
||||
extraRules = [{
|
||||
groups = [ "wheel" ];
|
||||
commands = [
|
||||
{
|
||||
command = "ALL";
|
||||
options = [ "NOPASSWD" ];
|
||||
}
|
||||
];
|
||||
}];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user