summaryrefslogtreecommitdiff
path: root/common/users.nix
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-03-16 23:16:07 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2026-03-16 23:16:07 +0100
commit459bfae2de8c5c534f5bbb2e4a328ea17188ac0a (patch)
tree448a9900b49342f3d22c117b65663c1a5e837950 /common/users.nix
parent84f5d968ee862bce5968f4e1a9914a7e3f9f40ee (diff)
flake: update
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;
+ };
};
}