summaryrefslogtreecommitdiff
path: root/common
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
parent84f5d968ee862bce5968f4e1a9914a7e3f9f40ee (diff)
flake: update
Diffstat (limited to 'common')
-rw-r--r--common/default.nix2
-rw-r--r--common/users.nix23
2 files changed, 15 insertions, 10 deletions
diff --git a/common/default.nix b/common/default.nix
index 81e0b5a..ae59698 100644
--- a/common/default.nix
+++ b/common/default.nix
@@ -77,6 +77,8 @@
pkgs.man-pages-posix
pkgs.gst_all_1.gstreamer
];
+
+ shells = [ pkgs.zsh ];
};
documentation = {
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;
+ };
};
}