prune
This commit is contained in:
@@ -18,16 +18,10 @@ in
|
|||||||
modules = with inputs.self.modules; [
|
modules = with inputs.self.modules; [
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
nixos."${username}"
|
nixos."${username}"
|
||||||
nixos.lxc
|
|
||||||
# nixos.sudo
|
|
||||||
nixos.zsh
|
nixos.zsh
|
||||||
nixos.docker
|
nixos.docker
|
||||||
nixos.step-client
|
nixos.step-client
|
||||||
{
|
{
|
||||||
users.users."${username}" = {
|
|
||||||
extraGroups = [ "docker" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users."${username}" = {
|
home-manager.users."${username}" = {
|
||||||
# imports = with inputs.self.modules.homeManager; [
|
# imports = with inputs.self.modules.homeManager; [
|
||||||
# step-client
|
# 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