nixos/lib/builders.nix

70 lines
1.9 KiB
Nix
Raw Normal View History

2024-08-10 18:02:58 +00:00
{ nixpkgs, self, ... }@inputs:
let
2024-08-19 12:55:29 +00:00
makePkgs = system: (import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [ self.overlays.default ];
});
2024-08-22 06:34:41 +00:00
lib = nixpkgs.lib.extend (import ../lib);
2024-08-19 13:21:38 +00:00
2024-08-01 07:46:04 +00:00
inherit (inputs.home-manager.lib) homeManagerConfiguration;
2024-08-22 06:48:39 +00:00
inherit (lib) nixosSystem;
2024-08-01 07:46:04 +00:00
inherit (lib.strings) optionalString;
inherit (lib.attrsets) nameValuePair;
in
rec {
toPartialNixosConfig =
2024-08-22 07:03:54 +00:00
{ hostname, system ? "x86_64-linux" }:
2024-08-01 07:46:04 +00:00
nameValuePair
hostname
(nixosSystem rec {
2024-08-19 12:55:29 +00:00
pkgs = makePkgs system;
2024-08-19 13:21:38 +00:00
specialArgs = { inherit inputs self; };
2024-08-19 12:55:29 +00:00
modules = [
../hosts/${hostname}/hardware-configuration.nix
../hosts/${hostname}/configuration.nix
inputs.home-manager.nixosModules.default
{
home-manager.extraSpecialArgs = {
inherit inputs self pkgs;
lib = pkgs.lib.extend (_: _: inputs.home-manager.lib);
};
}
];
2024-08-01 07:46:04 +00:00
});
compileSystems =
systems:
lib.right
builtins.listToAttrs
(map toPartialNixosConfig)
systems;
2024-07-21 21:19:02 +00:00
toPartialHomeManagerConfig =
2024-08-22 07:03:54 +00:00
{ user, system ? "x86_64-linux", hostname ? "", configHostname ? "" }:
2024-07-21 21:19:02 +00:00
let
configHost = if builtins.stringLength configHostname > 0 then configHostname else hostname;
2024-08-01 07:46:04 +00:00
hostStr = optionalString (builtins.stringLength hostname > 0) "@${hostname}";
2024-07-21 21:19:02 +00:00
in
2024-07-22 07:05:45 +00:00
assert lib.assertMsg (builtins.stringLength configHost > 0) "either configHostname or hostname need to exist";
2024-08-01 07:46:04 +00:00
nameValuePair
"${user}${hostStr}"
(homeManagerConfiguration {
2024-08-19 12:55:29 +00:00
pkgs = makePkgs system;
2024-08-19 13:21:38 +00:00
extraSpecialArgs = { inherit inputs self; };
2024-07-21 21:19:02 +00:00
modules = [
../hosts/${configHost}/home.nix
];
2024-08-01 07:46:04 +00:00
});
2024-07-21 21:19:02 +00:00
compileHomes =
systems:
lib.right
builtins.listToAttrs
(map toPartialHomeManagerConfig)
systems;
}