mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
53 lines
1.5 KiB
Nix
53 lines
1.5 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);
|
|
};
|
|
|
|
# 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"
|
|
]
|
|
# generate proxmox image for virtual machines without desktop environment
|
|
(host: self.nixosConfigurations.${host}.config.formats.proxmox)
|
|
)
|
|
];
|
|
}
|