use haumea for homeProfiles

This commit is contained in:
xunuwu 2025-06-06 13:39:38 +02:00
parent 383d9f878e
commit 9d5414f614
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
3 changed files with 57 additions and 55 deletions

View file

@ -6,11 +6,13 @@
haumea,
...
} @ inputs: let
systemProfiles = haumea.lib.load {
src = ./sys/profiles;
loader = haumea.lib.loaders.path;
};
homeProfiles = ./home;
_load = path:
haumea.lib.load {
src = path;
loader = haumea.lib.loaders.path;
};
systemProfiles = _load ./sys/profiles;
homeProfiles = _load ./home;
vars = import ./vars;
l = nixpkgs.lib;
b = builtins;