doas
This commit is contained in:
parent
67388a2d29
commit
3f72533259
|
@ -15,5 +15,6 @@
|
|||
./update
|
||||
./polkit
|
||||
./ssh
|
||||
./doas
|
||||
];
|
||||
}
|
||||
|
|
5
modules/doas/default.nix
Normal file
5
modules/doas/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ ... }:
|
||||
{
|
||||
security.doas.enable = true;
|
||||
# security.sudo.enable = false;
|
||||
}
|
|
@ -11,7 +11,7 @@
|
|||
users.users.joy = {
|
||||
isNormalUser = true;
|
||||
description = "joy";
|
||||
extraGroups = [ "wheel" "docker" ];
|
||||
extraGroups = [ "wheel" "docker" "foo" ];
|
||||
};
|
||||
|
||||
virtualisation.docker.rootless.enable = true;
|
||||
|
|
Loading…
Reference in a new issue