mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
More refactor hard deleting
This commit is contained in:
20
user/users.nix
Normal file
20
user/users.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
users.users = {
|
||||
jonas = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"docker"
|
||||
"input"
|
||||
"scanner"
|
||||
"lp"
|
||||
"davfs2"
|
||||
"wheel"
|
||||
"audio"
|
||||
"networkmanager"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user