move user info to ./users directory

This commit is contained in:
Aly Raffauf 2024-03-02 00:08:54 -05:00
parent 8739621b9e
commit c7df1d2ba1
4 changed files with 22 additions and 7 deletions

View file

@ -26,6 +26,7 @@
modules = [
./hosts/rustboro
./system
./users/aly.nix
./flatpak
./desktop/gnome
./programs/podman
@ -53,6 +54,7 @@
modules = [
./hosts/petalburg
./system
./users/aly.nix
./flatpak
./desktop/gnome
./programs/podman

View file

@ -24,13 +24,6 @@
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;

10
users/aly.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
}

10
users/dustin.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Dustin Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
}