chore: reorganise modules

This commit is contained in:
Nico 2025-05-03 16:15:58 +10:00
parent 0662d79447
commit 292dfcfccd
10 changed files with 31 additions and 23 deletions

9
modules/linux/users.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ...}:
{
users.users.nico = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
}