chore(lib): Add experimental standalone home-manager option
This commit is contained in:
parent
512d6d2dd4
commit
885ceb5c94
1 changed files with 162 additions and 67 deletions
227
lib/default.nix
227
lib/default.nix
|
|
@ -29,7 +29,160 @@
|
||||||
comnbinedConfig = config // {overlays = overlays ++ defaultConfig.overlays;};
|
comnbinedConfig = config // {overlays = overlays ++ defaultConfig.overlays;};
|
||||||
in
|
in
|
||||||
import pkgs comnbinedConfig;
|
import pkgs comnbinedConfig;
|
||||||
in {
|
in rec {
|
||||||
|
mkNixos = {
|
||||||
|
root,
|
||||||
|
inputLib,
|
||||||
|
lib,
|
||||||
|
stablePkgs,
|
||||||
|
unstablePkgs,
|
||||||
|
stableMods,
|
||||||
|
unstableMods,
|
||||||
|
overridePkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
builtins.listToAttrs (
|
||||||
|
map
|
||||||
|
(name: {
|
||||||
|
inherit name;
|
||||||
|
value = let
|
||||||
|
mod = root + /hosts/${name}/configuration.nix;
|
||||||
|
additionalNixosConfig = root + /hosts/${name}/hardware.nix;
|
||||||
|
additionalHomeConfig = root + /hosts/${name}/home.nix;
|
||||||
|
args = {
|
||||||
|
inherit
|
||||||
|
self
|
||||||
|
inputs
|
||||||
|
mod
|
||||||
|
additionalHomeConfig
|
||||||
|
system
|
||||||
|
root
|
||||||
|
dashNixAdditionalProps
|
||||||
|
lib
|
||||||
|
;
|
||||||
|
stable = stablePkgs;
|
||||||
|
unstable = unstablePkgs;
|
||||||
|
pkgs = lib.mkForce (
|
||||||
|
if overridePkgs
|
||||||
|
then stablePkgs
|
||||||
|
else unstablePkgs
|
||||||
|
);
|
||||||
|
alternativePkgs =
|
||||||
|
if overridePkgs
|
||||||
|
then unstablePkgs
|
||||||
|
else stablePkgs;
|
||||||
|
hostName = name;
|
||||||
|
homeMods =
|
||||||
|
if overridePkgs
|
||||||
|
then unstableMods.home
|
||||||
|
else stableMods.home;
|
||||||
|
mkDashDefault = import ./override.nix {inherit lib;};
|
||||||
|
};
|
||||||
|
nixosMods =
|
||||||
|
if overridePkgs
|
||||||
|
then unstableMods.nixos
|
||||||
|
else stableMods.nixos;
|
||||||
|
in
|
||||||
|
inputLib.nixosSystem {
|
||||||
|
modules =
|
||||||
|
[
|
||||||
|
{_module.args = args;}
|
||||||
|
mod
|
||||||
|
]
|
||||||
|
++ nixosMods
|
||||||
|
++ lib.optional (builtins.pathExists additionalNixosConfig) additionalNixosConfig
|
||||||
|
++ lib.optional (builtins.pathExists mod) mod;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(
|
||||||
|
lib.lists.remove "" (
|
||||||
|
lib.attrsets.mapAttrsToList (name: fType:
|
||||||
|
if fType == "directory"
|
||||||
|
then name
|
||||||
|
else "") (
|
||||||
|
builtins.readDir (root + /hosts)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
mkHome = {
|
||||||
|
root,
|
||||||
|
lib,
|
||||||
|
stablePkgs,
|
||||||
|
unstablePkgs,
|
||||||
|
stableMods,
|
||||||
|
unstableMods,
|
||||||
|
overridePkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
builtins.listToAttrs (
|
||||||
|
map
|
||||||
|
(name: {
|
||||||
|
inherit name;
|
||||||
|
value = let
|
||||||
|
mod = root + /homes/${name}/configuration.nix;
|
||||||
|
additionalHomeConfig = root + /homes/${name}/home.nix;
|
||||||
|
args = {
|
||||||
|
inherit
|
||||||
|
self
|
||||||
|
inputs
|
||||||
|
mod
|
||||||
|
additionalHomeConfig
|
||||||
|
system
|
||||||
|
root
|
||||||
|
dashNixAdditionalProps
|
||||||
|
lib
|
||||||
|
;
|
||||||
|
stable = stablePkgs;
|
||||||
|
unstable = unstablePkgs;
|
||||||
|
pkgs = lib.mkForce (
|
||||||
|
if overridePkgs
|
||||||
|
then stablePkgs
|
||||||
|
else unstablePkgs
|
||||||
|
);
|
||||||
|
alternativePkgs =
|
||||||
|
if overridePkgs
|
||||||
|
then unstablePkgs
|
||||||
|
else stablePkgs;
|
||||||
|
userName = name;
|
||||||
|
mkDashDefault = import ./override.nix {inherit lib;};
|
||||||
|
};
|
||||||
|
homeMods =
|
||||||
|
if overridePkgs
|
||||||
|
then unstableMods.home
|
||||||
|
else stableMods.home;
|
||||||
|
in
|
||||||
|
inputs.home-manager.lib.homeManagerConfiguration
|
||||||
|
{
|
||||||
|
inherit (args) pkgs;
|
||||||
|
modules =
|
||||||
|
[
|
||||||
|
{_module.args = args;}
|
||||||
|
mod
|
||||||
|
]
|
||||||
|
++ homeMods
|
||||||
|
++ [
|
||||||
|
../home/common.nix
|
||||||
|
../home/themes
|
||||||
|
../home/sync.nix
|
||||||
|
./foxwrappers.nix
|
||||||
|
]
|
||||||
|
++ lib.optional (builtins.pathExists mod) mod;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(
|
||||||
|
lib.lists.remove "" (
|
||||||
|
lib.attrsets.mapAttrsToList (name: fType:
|
||||||
|
if fType == "directory"
|
||||||
|
then name
|
||||||
|
else "") (
|
||||||
|
builtins.readDir (root + /homes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
# buildSystems
|
# buildSystems
|
||||||
|
|
@ -58,7 +211,7 @@ in {
|
||||||
# );
|
# );
|
||||||
|
|
||||||
# in
|
# in
|
||||||
buildSystems = {
|
buildFunc = func: {
|
||||||
root,
|
root,
|
||||||
unstableBundle ? {},
|
unstableBundle ? {},
|
||||||
stableBundle ? {},
|
stableBundle ? {},
|
||||||
|
|
@ -118,73 +271,15 @@ in {
|
||||||
pkgs = stableInput;
|
pkgs = stableInput;
|
||||||
config = stableConfig;
|
config = stableConfig;
|
||||||
};
|
};
|
||||||
inputlib = unstableInput.lib;
|
inputLib = unstableInput.lib;
|
||||||
inherit (unstablePkgs) lib;
|
inherit (unstablePkgs) lib;
|
||||||
in
|
in
|
||||||
builtins.listToAttrs (
|
func {
|
||||||
map
|
inherit lib inputLib stablePkgs unstablePkgs stableMods unstableMods stableInputs unstableInputs root overridePkgs;
|
||||||
(name: {
|
|
||||||
inherit name;
|
|
||||||
value = let
|
|
||||||
mod = root + /hosts/${name}/configuration.nix;
|
|
||||||
additionalNixosConfig = root + /hosts/${name}/hardware.nix;
|
|
||||||
additionalHomeConfig = root + /hosts/${name}/home.nix;
|
|
||||||
args = {
|
|
||||||
inherit
|
|
||||||
self
|
|
||||||
inputs
|
|
||||||
mod
|
|
||||||
additionalHomeConfig
|
|
||||||
system
|
|
||||||
root
|
|
||||||
dashNixAdditionalProps
|
|
||||||
lib
|
|
||||||
;
|
|
||||||
stable = stablePkgs;
|
|
||||||
unstable = unstablePkgs;
|
|
||||||
pkgs = lib.mkForce (
|
|
||||||
if overridePkgs
|
|
||||||
then stablePkgs
|
|
||||||
else unstablePkgs
|
|
||||||
);
|
|
||||||
alternativePkgs =
|
|
||||||
if overridePkgs
|
|
||||||
then unstablePkgs
|
|
||||||
else stablePkgs;
|
|
||||||
hostName = name;
|
|
||||||
homeMods =
|
|
||||||
if overridePkgs
|
|
||||||
then unstableMods.home
|
|
||||||
else stableMods.home;
|
|
||||||
mkDashDefault = import ./override.nix {inherit lib;};
|
|
||||||
};
|
};
|
||||||
nixosMods =
|
|
||||||
if overridePkgs
|
buildSystems = buildFunc mkNixos;
|
||||||
then unstableMods.nixos
|
buildHome = buildFunc mkHome;
|
||||||
else stableMods.nixos;
|
|
||||||
in
|
|
||||||
inputlib.nixosSystem {
|
|
||||||
modules =
|
|
||||||
[
|
|
||||||
{_module.args = args;}
|
|
||||||
mod
|
|
||||||
]
|
|
||||||
++ nixosMods
|
|
||||||
++ lib.optional (builtins.pathExists additionalNixosConfig) additionalNixosConfig
|
|
||||||
++ lib.optional (builtins.pathExists mod) mod;
|
|
||||||
};
|
|
||||||
})
|
|
||||||
(
|
|
||||||
lib.lists.remove "" (
|
|
||||||
lib.attrsets.mapAttrsToList (name: fType:
|
|
||||||
if fType == "directory"
|
|
||||||
then name
|
|
||||||
else "") (
|
|
||||||
builtins.readDir (root + /hosts)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
buildIso = inputs.unstable.lib.nixosSystem {
|
buildIso = inputs.unstable.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue