inital
This commit is contained in:
19
modules/users.nix
Normal file
19
modules/users.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user