nixos/builders.nix

75 lines
2.0 KiB
Nix
Raw Permalink 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;
2024-09-12 00:34:57 +00:00
overlays = [
self.overlays.default
inputs.niri.overlays.niri
];
2024-08-19 12:55:29 +00:00
});
2024-08-22 07:17:55 +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 = [
2024-08-22 07:17:55 +00:00
./hosts/${hostname}/hardware-configuration.nix
./hosts/${hostname}/configuration.nix
inputs.home-manager.nixosModules.default
2024-09-12 00:34:57 +00:00
inputs.niri.nixosModules.niri
2024-09-18 05:16:08 +00:00
inputs.lix-module.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 = [
2024-08-22 07:17:55 +00:00
./hosts/${configHost}/home.nix
2024-07-21 21:19:02 +00:00
];
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;
}