This commit is contained in:
joygnu 2024-08-18 15:32:20 +02:00
parent fe811b14b4
commit c331bcd5f5
3 changed files with 7 additions and 1 deletions

View file

@ -15,5 +15,6 @@
./update
./polkit
./ssh
./doas
];
}

5
modules/doas/default.nix Normal file
View file

@ -0,0 +1,5 @@
{ ... }:
{
security.doas.enable = true;
# security.sudo.enable = false;
}

View file

@ -11,7 +11,7 @@
users.users.joy = {
isNormalUser = true;
description = "joy";
extraGroups = [ "wheel" "docker" ];
extraGroups = [ "wheel" "docker" "foo" ];
};
virtualisation.docker.rootless.enable = true;