Files
nix-config/systems/nixos.nix
2024-01-28 23:09:11 +08:00

57 lines
1.6 KiB
Nix

args:
with args;
with mylib;
with allSystemAttrs; let
base_args = {
inherit home-manager nixos-generators;
inherit nixpkgs; # or nixpkgs-unstable
system = x64_system;
specialArgs = allSystemSpecialArgs.x64_system;
};
in {
nixosConfigurations = {
# ai with i3 window manager
ai_i3 = nixosSystem (idol_ai_modules_i3 // base_args);
# ai with hyprland compositor
ai_hyprland = nixosSystem (idol_ai_modules_hyprland // base_args);
# shoukei
shoukei_i3 = nixosSystem (_12kingdoms_shoukei_modules_i3 // base_args);
shoukei_hyprland = nixosSystem (_12kingdoms_shoukei_modules_hyprland // base_args);
# three virtual machines without desktop environment.
aquamarine = nixosSystem (idol_aquamarine_modules // base_args);
ruby = nixosSystem (idol_ruby_modules // base_args);
kana = nixosSystem (idol_kana_modules // base_args);
tailscale_gw = nixosSystem (homelab_tailscale_gw_modules // base_args);
};
# take system images for idols
# https://github.com/nix-community/nixos-generators
packages."${x64_system}" = attrs.mergeAttrsList [
(
attrs.listToAttrs
[
"ai_i3"
"ai_hyprland"
]
# generate iso image for hosts with desktop environment
(host: self.nixosConfigurations.${host}.config.formats.iso)
)
(
attrs.listToAttrs
[
"aquamarine"
"ruby"
"kana"
"tailscale_gw"
]
# generate proxmox image for virtual machines without desktop environment
(host: self.nixosConfigurations.${host}.config.formats.proxmox)
)
];
}