wip
This commit is contained in:
parent
c5a26648be
commit
c44ae86ac1
9 changed files with 244 additions and 30 deletions
15
modules/features/layers/user.nix
Normal file
15
modules/features/layers/user.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
{ self, inputs, ... }: {
|
||||
flake.nixosModules.user = { pkgs, lib, ... }: {
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.jingus = {
|
||||
isNormalUser = true;
|
||||
description = "jingus";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
# thunderbird
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue