❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add homebox

Signed-off-by: A. Ottr <alex@otter.foo>

A. Ottr ae8b37cc 2b7bfccb

+10
+1
hosts/polecat/configuration.nix
··· 16 16 # ../../modules/nixos/server/blocky.nix 17 17 ../../modules/nixos/server/pi-hole.nix 18 18 ../../modules/nixos/server/uptime.nix 19 + ../../modules/nixos/server/homebox.nix 19 20 ]; 20 21 21 22 age.secrets."passwd".file = ../../secrets/common/passwd.age;
+9
modules/nixos/server/homebox.nix
··· 1 + { pkgs, ... }: 2 + 3 + { 4 + services.homebox = { 5 + enable = true; 6 + }; 7 + 8 + networking.firewall.allowedTCPPorts = [ 7745 ]; 9 + }