Config overhaul

This commit is contained in:
2025-05-29 23:48:27 -06:00
parent ab2d207bf3
commit 0e47cae395
13 changed files with 220 additions and 150 deletions

13
modules/users.nix Normal file
View File

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.atridad = {
isNormalUser = true;
description = "Atridad";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
# thunderbird
];
};
}