From e5d3bb051cbe1321d9b0db47b2cc8ad974773c61 Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Fri, 20 Mar 2026 09:17:17 +0100 Subject: [PATCH] Update the flake to also build and run the compose songsheet, open ports to pelican. --- flake.nix | 5 +++++ nix-system-configs/modules/system/compose-songsheet.nix | 2 ++ 2 files changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 3d10608..475350a 100644 --- a/flake.nix +++ b/flake.nix @@ -30,6 +30,11 @@ 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 { inherit system; modules = [./nix-system-configs/modules/system/database.nix]; diff --git a/nix-system-configs/modules/system/compose-songsheet.nix b/nix-system-configs/modules/system/compose-songsheet.nix index 4e30c81..8dd4628 100644 --- a/nix-system-configs/modules/system/compose-songsheet.nix +++ b/nix-system-configs/modules/system/compose-songsheet.nix @@ -54,12 +54,14 @@ in { 443 8086 # Wavelog 8087 # PartDB + 8070 # Pelican ]; networking.firewall.allowedUDPPorts = [ 80 443 8086 # Wavelog 8087 # PartDB + 8070 # Pelican ]; system.stateVersion = "25.11";