Skip to content

Commit

Permalink
feat(nixos): add docker group to users
Browse files Browse the repository at this point in the history
  • Loading branch information
tyriis committed Mar 16, 2024
1 parent 7a8d3a4 commit 9a4b7d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/nixos/users.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
createHome = true;
useDefaultShell = true;
home = "/home/nils";
extraGroups = [ "wheel" "networkmanager" "audio" ];
extraGroups = [ "wheel" "networkmanager" "audio" "docker" ];
openssh.authorizedKeys.keys =
let
authorizedKeys = pkgs.fetchurl {
Expand All @@ -32,7 +32,7 @@
isNormalUser = true;
createHome = true;
home = "/home/jasmin";
extraGroups = [ "wheel" "networkmanager" ];
extraGroups = [ "wheel" "networkmanager" "audio" "docker" ];
openssh.authorizedKeys.keys =
let
authorizedKeys = pkgs.fetchurl {
Expand Down

0 comments on commit 9a4b7d6

Please sign in to comment.