summary refs log tree commit diff
path: root/modules/users/cb.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/users/cb.nix')
-rwxr-xr-xmodules/users/cb.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/users/cb.nix b/modules/users/cb.nix
new file mode 100755

index 0000000..adeba50 --- /dev/null +++ b/modules/users/cb.nix
@@ -0,0 +1,12 @@ +{ pkgs, ... }: + +{ + + users.users.cb = { + isNormalUser = true; + extraGroups = [ + "wheel" + "dialout" + ]; + }; +}