This commit is contained in:
2025-10-27 09:14:51 -05:00
commit a0ec26104d
16 changed files with 1065 additions and 0 deletions

19
modules/users.nix Normal file
View File

@@ -0,0 +1,19 @@
# ./modules/users.nix
# Define and configure user accounts
{ config, pkgs, ... }:
{
# Configure the default user shell as fish
programs.fish.enable = true;
users.defaultUserShell = pkgs.fish;
# Define user accounts
users.users = {
psljr = {
isNormalUser = true;
description = "Paul Lopez";
extraGroups = [ "networkmanager" "wheel" ];
};
};
}