Migrate to snowfall lib
This commit is contained in:
21
modules/nixos/users/default.nix
Normal file
21
modules/nixos/users/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ config, pkgs, ... }: {
|
||||
programs.zsh.enable = true;
|
||||
users = {
|
||||
defaultUserShell = pkgs.zsh;
|
||||
users.${config.hostcfg.username} = {
|
||||
isNormalUser = true;
|
||||
description = "${config.hostcfg.username}";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"vboxsf"
|
||||
"adbusers"
|
||||
"lp"
|
||||
"audio"
|
||||
"video"
|
||||
"docker"
|
||||
"wireshark"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user