mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 05:44:38 -05:00
feat: added user2 and refactored to accommodate
This commit is contained in:
parent
c169f84dcc
commit
9cdcf4fec4
97 changed files with 1473 additions and 1052 deletions
|
@ -3,21 +3,17 @@ let
|
|||
|
||||
user0 = "nick";
|
||||
user1 = "garnet";
|
||||
in {
|
||||
user2 = "fallaryn";
|
||||
in
|
||||
{
|
||||
inherit
|
||||
user0
|
||||
user1
|
||||
user2
|
||||
;
|
||||
users = {
|
||||
"${user0}" = import (configPath + "/user0.nix") {
|
||||
inherit
|
||||
user0
|
||||
;
|
||||
};
|
||||
"${user1}" = import (configPath + "/user1.nix") {
|
||||
inherit
|
||||
user1
|
||||
;
|
||||
};
|
||||
"${user0}" = import (configPath + /user0.nix) { inherit user0; };
|
||||
"${user1}" = import (configPath + /user1.nix) { inherit user1; };
|
||||
"${user2}" = import (configPath + /user2.nix) { inherit user2; };
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue