Update the flake to also build and run the compose songsheet, open ports to pelican.

This commit is contained in:
Root User 2026-03-20 09:17:17 +01:00
parent 6cc0063dec
commit e5d3bb051c
Signed by: root
GPG key ID: 087F0A95E5766D72
2 changed files with 7 additions and 0 deletions

View file

@ -30,6 +30,11 @@
modules = [./nix-system-configs/modules/system/compose-songsheet.nix]; modules = [./nix-system-configs/modules/system/compose-songsheet.nix];
}; };
"nixos-compose-songsheet" = nixpkgs.lib.nixosSystem {
inherit system;
modules = [./nix-system-configs/modules/system/compose-songsheet.nix];
};
"nixos-database" = nixpkgs.lib.nixosSystem { "nixos-database" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [./nix-system-configs/modules/system/database.nix]; modules = [./nix-system-configs/modules/system/database.nix];

View file

@ -54,12 +54,14 @@ in {
443 443
8086 # Wavelog 8086 # Wavelog
8087 # PartDB 8087 # PartDB
8070 # Pelican
]; ];
networking.firewall.allowedUDPPorts = [ networking.firewall.allowedUDPPorts = [
80 80
443 443
8086 # Wavelog 8086 # Wavelog
8087 # PartDB 8087 # PartDB
8070 # Pelican
]; ];
system.stateVersion = "25.11"; system.stateVersion = "25.11";