Modularized config

This commit is contained in:
2026-01-28 18:11:35 +01:00
parent 3b2a08f16c
commit 94651da127
7 changed files with 121 additions and 212 deletions

16
systems/modules/users.nix Normal file
View 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;
};
}