mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-06 21:17:14 -06:00
18 lines
358 B
Nix
18 lines
358 B
Nix
|
|
{ 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; };
|
||
|
|
};
|
||
|
|
}
|