add nextcloud group

This commit is contained in:
stubbfel
2017-11-21 23:35:24 +01:00
parent a16b8e90ad
commit f2c576b47e

View File

@@ -12,6 +12,6 @@ in
users = { users = {
defaultUserShell = pkgs.zsh; defaultUserShell = pkgs.zsh;
extraUsers.sshuser = myPublicSshKeys // { isNormalUser = true; home = "/home/sshuser";}; extraUsers.sshuser = myPublicSshKeys // { isNormalUser = true; home = "/home/sshuser";};
extraUsers.nextcloud = myPublicSshKeys // { isNormalUser = true; home = "/home/nextcloud";}; extraUsers.nextcloud = myPublicSshKeys // { isNormalUser = true; home = "/home/nextcloud"; extraGroups = [nextcloud]};
}; };
} }