ugggGGGG
This commit is contained in:
parent
ef4d27f82c
commit
b4f2f69598
1 changed files with 6 additions and 10 deletions
|
@ -9,13 +9,13 @@ let
|
|||
});
|
||||
|
||||
lib = nixpkgs.lib;
|
||||
libExt = import ./. lib;
|
||||
# libExt = import ./. lib;
|
||||
|
||||
inherit (inputs.home-manager.lib) homeManagerConfiguration;
|
||||
inherit (lib) nixosSystem;
|
||||
inherit (lib.strings) optionalString;
|
||||
inherit (lib.attrsets) nameValuePair;
|
||||
inherit (libExt) right;
|
||||
# inherit (libExt) right;
|
||||
in
|
||||
rec {
|
||||
toPartialNixosConfig =
|
||||
|
@ -34,10 +34,8 @@ rec {
|
|||
});
|
||||
compileSystems =
|
||||
systems:
|
||||
right
|
||||
builtins.listToAttrs
|
||||
(map toPartialNixosConfig)
|
||||
systems;
|
||||
(builtins.listToAttrs
|
||||
(map toPartialNixosConfig systems));
|
||||
|
||||
toPartialHomeManagerConfig =
|
||||
{ user, system, hostname ? "", configHostname ? "" }:
|
||||
|
@ -58,8 +56,6 @@ rec {
|
|||
});
|
||||
compileHomes =
|
||||
systems:
|
||||
right
|
||||
builtins.listToAttrs
|
||||
(map toPartialHomeManagerConfig)
|
||||
systems;
|
||||
(builtins.listToAttrs
|
||||
(map toPartialHomeManagerConfig systems));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue