mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 11:15:10 +00:00
18 lines
261 B
Nix
18 lines
261 B
Nix
{
|
|
lib,
|
|
self,
|
|
self',
|
|
config,
|
|
inputs,
|
|
inputs',
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkDefault;
|
|
inherit (lib.attrsets) genAttrs;
|
|
in {
|
|
hjem = {
|
|
users = genAttrs config.olympus.system.users (name: ./${name});
|
|
|
|
clobberByDefault = true;
|
|
};
|
|
}
|