Reorganize modules
This commit is contained in:
22
modules/users.nix
Normal file
22
modules/users.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.avravels = {
|
||||
initialPassword = "welcome";
|
||||
isNormalUser = true;
|
||||
description = "Armel van Ravels";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"libvirtd"
|
||||
"dialout"
|
||||
];
|
||||
packages = with pkgs; [
|
||||
home-manager
|
||||
spotify
|
||||
proton-vpn
|
||||
fzf
|
||||
];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user