summaryrefslogtreecommitdiff
path: root/common/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/users.nix')
-rw-r--r--common/users.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/users.nix b/common/users.nix
new file mode 100644
index 0000000..5046d0a
--- /dev/null
+++ b/common/users.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+{
+ users.n8 = {
+ isNormalUser = true;
+ extraGroups = [
+ "wheel"
+ "networkmanager"
+ ];
+ shell = pkgs.zsh;
+ };
+}