dotfiles/modules/config/users/default.nix

20 lines
370 B
Nix
Raw Normal View History

2024-11-10 01:29:37 -06:00
let
configPath = ./config;
user0 = "nick";
user1 = "garnet";
user2 = "fallaryn";
in
{
2024-11-10 01:29:37 -06:00
inherit
user0
user1
user2
2024-11-10 01:29:37 -06:00
;
users = {
"${user0}" = import (configPath + /user0.nix) { inherit user0; };
"${user1}" = import (configPath + /user1.nix) { inherit user1; };
"${user2}" = import (configPath + /user2.nix) { inherit user2; };
2024-11-10 01:29:37 -06:00
};
}