2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2024-12-21 19:57:30 +01:00

felixalbpc/flake: fix group bug

This commit is contained in:
Felix Albrigtsen 2024-09-25 19:56:37 +02:00
parent bfcb4f7dce
commit b553f83da8
2 changed files with 1 additions and 2 deletions

View File

@ -82,7 +82,7 @@
users.users.felixalb = {
isNormalUser = true;
extraGroups = lib.mkDefault [
extraGroups = [
"wheel"
"docker"
];

View File

@ -33,7 +33,6 @@
users.users.felixalb = {
uid = 1328256;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [ ];
};