Modularized config
This commit is contained in:
16
systems/modules/users.nix
Normal file
16
systems/modules/users.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.avravels = {
|
||||
isNormalUser = true;
|
||||
description = "Armel van Ravels";
|
||||
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
|
||||
packages = with pkgs; [
|
||||
home-manager
|
||||
discord
|
||||
spotify
|
||||
protonvpn-gui
|
||||
];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user