mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 20:33:55 -05:00
move user info to ./users directory
This commit is contained in:
parent
8739621b9e
commit
c7df1d2ba1
|
@ -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
|
||||
|
|
|
@ -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
10
users/aly.nix
Normal 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
10
users/dustin.nix
Normal 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" ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue