summaryrefslogtreecommitdiff
path: root/common/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/users.nix')
-rw-r--r--common/users.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/common/users.nix b/common/users.nix
index 6902447..65f9c3b 100644
--- a/common/users.nix
+++ b/common/users.nix
@@ -1,14 +1,17 @@
{ pkgs, ... }:
{
- users.n8 = {
- isNormalUser = true;
- extraGroups = [
- "wheel"
- "networkmanager"
- "ydotool"
- "libvirtd"
- "docker"
- ];
- shell = pkgs.zsh;
+ defaultUserShell = pkgs.zsh;
+ users = {
+ n8 = {
+ isNormalUser = true;
+ extraGroups = [
+ "wheel"
+ "networkmanager"
+ "ydotool"
+ "libvirtd"
+ "docker"
+ ];
+ shell = pkgs.zsh;
+ };
};
}