feat: update comments

This commit is contained in:
Ryan Yin
2023-07-30 01:25:28 +08:00
parent 2970073d5e
commit e4c9e863cf

View File

@@ -97,6 +97,7 @@
# ai with hyprland compositor # ai with hyprland compositor
ai_hyprland = nixosSystem (idol_ai_modules_hyprland // stable_args); ai_hyprland = nixosSystem (idol_ai_modules_hyprland // stable_args);
# three virtual machines without desktop environment.
aquamarine = nixosSystem (idol_aquamarine_modules // stable_args); aquamarine = nixosSystem (idol_aquamarine_modules // stable_args);
ruby = nixosSystem (idol_ruby_modules // stable_args); ruby = nixosSystem (idol_ruby_modules // stable_args);
kana = nixosSystem (idol_kana_modules // stable_args); kana = nixosSystem (idol_kana_modules // stable_args);
@@ -110,6 +111,7 @@
"ai_i3" "ai_i3"
"ai_hyprland" "ai_hyprland"
] ( ] (
# generate iso image for hosts with desktop environment
host: host:
self.nixosConfigurations.${host}.config.formats.iso self.nixosConfigurations.${host}.config.formats.iso
) )
@@ -118,6 +120,7 @@
"ruby" "ruby"
"kana" "kana"
] ( ] (
# generate proxmox image for virtual machines without desktop environment
host: host:
self.nixosConfigurations.${host}.config.formats.proxmox self.nixosConfigurations.${host}.config.formats.proxmox
); );