feat: expanded all lists

This commit is contained in:
Nick 2025-01-08 19:06:14 -06:00
parent 59cc199722
commit bb0b55b011
144 changed files with 1798 additions and 507 deletions

View file

@ -1,5 +1,7 @@
{user0}: let
inherit user0;
inherit
user0
;
in {
name = "Nick";
aliases = {

View file

@ -1,5 +1,7 @@
{user1}: let
inherit user1;
inherit
user1
;
in {
name = "Garnet";
email = {

View file

@ -9,7 +9,15 @@ in {
user1
;
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
;
};
};
}