dotfiles/modules/config/users/default.nix

17 lines
271 B
Nix
Raw Normal View History

2025-03-29 23:08:26 -05:00
let
configPath = ./config;
user0 = "nick";
2025-06-26 02:15:04 -05:00
user1 = "streaming";
2025-03-29 23:08:26 -05:00
in
{
inherit
user0
user1
;
users = {
"${user0}" = import (configPath + /user0.nix) { inherit user0; };
"${user1}" = import (configPath + /user1.nix) { inherit user1; };
};
}