mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{
|
|
inputs,
|
|
self,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (builtins) filter;
|
|
inherit (lib)
|
|
nixosSystem
|
|
mkDefaultOizysModule
|
|
mkOizysModule
|
|
enabled
|
|
enableAttrs
|
|
isNixFile
|
|
flakeFromSystem
|
|
pipeList
|
|
;
|
|
inherit (lib.filesystem) listFilesRecursive;
|
|
|
|
flake = flakeFromSystem "x86_64-linux";
|
|
hostPath = host: ../. + "/hosts/${host}";
|
|
# all nix files not including pkgs.nix
|
|
# hostFiles = host: filter isNixFile (listFilesRecursive (hostPath host));
|
|
hostFiles = host: host |> hostPath |> listFilesRecursive |> filter isNixFile;
|
|
|
|
commonSpecialArgs = {
|
|
inherit
|
|
self
|
|
inputs
|
|
lib
|
|
enabled
|
|
;
|
|
};
|
|
|
|
mkIso = nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
inputs.lix-module.nixosModules.default
|
|
self.nixosModules.nix
|
|
self.nixosModules.essentials
|
|
self.nixosModules.iso
|
|
];
|
|
specialArgs = commonSpecialArgs;
|
|
};
|
|
|
|
mkSystem =
|
|
hostName:
|
|
nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
../modules/oizys.nix
|
|
../overlays
|
|
inputs.lix-module.nixosModules.default
|
|
inputs.hyprland.nixosModules.default
|
|
] ++ (hostFiles hostName);
|
|
|
|
specialArgs = commonSpecialArgs // {
|
|
inherit
|
|
mkDefaultOizysModule
|
|
mkOizysModule
|
|
pipeList
|
|
enableAttrs
|
|
hostName
|
|
flake
|
|
;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
inherit mkIso mkSystem;
|
|
}
|