mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
chore: init
This commit is contained in:
commit
1b2c1ea359
891 changed files with 37053 additions and 0 deletions
22
modules/config/users/config/user0.nix
Executable file
22
modules/config/users/config/user0.nix
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
{ user0 }:
|
||||
{
|
||||
name = "Nick";
|
||||
aliases = {
|
||||
name0 = "BRBWaffles";
|
||||
name1 = "brbwaffles";
|
||||
name2 = "Nutrivore";
|
||||
name3 = "nutrivore";
|
||||
name4 = "upRootNutrition";
|
||||
};
|
||||
email = {
|
||||
address0 = "nickjhiebert@proton.me";
|
||||
address1 = "thenutrivore@proton.me";
|
||||
address2 = "nick@uprootnutrition.com";
|
||||
};
|
||||
paths = {
|
||||
path0 = "/home/${user0}/Files/Projects"; # Git path
|
||||
};
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9TmImDoYDpsW5VMFbOcuK3aH4TWRtx/xGxT3yUtEN nick@desktop"
|
||||
];
|
||||
}
|
||||
15
modules/config/users/config/user1.nix
Executable file
15
modules/config/users/config/user1.nix
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
{ user1 }:
|
||||
{
|
||||
name = "Streaming";
|
||||
aliases = {
|
||||
};
|
||||
email = {
|
||||
address0 = "nick@upRootNutrition.com";
|
||||
};
|
||||
paths = {
|
||||
path0 = "/home/${user1}/Files/Projects"; # Git path
|
||||
};
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBF9TmImDoYDpsW5VMFbOcuK3aH4TWRtx/xGxT3yUtEN nick@desktop"
|
||||
];
|
||||
}
|
||||
17
modules/config/users/default.nix
Executable file
17
modules/config/users/default.nix
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
{ moduleFunctions }:
|
||||
let
|
||||
inherit (moduleFunctions) usersFunctions;
|
||||
configPath = ./config;
|
||||
user0 = usersFunctions.user0;
|
||||
user1 = usersFunctions.user1;
|
||||
in
|
||||
{
|
||||
inherit
|
||||
user0
|
||||
user1
|
||||
;
|
||||
users = {
|
||||
"${user0}" = import (configPath + /user0.nix) { inherit user0; };
|
||||
"${user1}" = import (configPath + /user1.nix) { inherit user1; };
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue