this repo has no description
2
fork

Configure Feed

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

box: get gonic working again (needed headphones user)

+11 -2
+2 -2
hosts/box/default.nix
··· 10 10 # ../profiles/monitoring 11 11 ../profiles/nfs 12 12 ../profiles/gonic 13 - ../profiles/headphones 13 + # ../profiles/headphones # TODO broken on 23.11, see: https://github.com/rembo10/headphones/issues/3320 14 14 ../profiles/radicale 15 - ../profiles/seafile 15 + # ../profiles/seafile # waiting for https://github.com/NixOS/nixpkgs/pull/249523 to be merged 16 16 ../profiles/syncthing 17 17 ../profiles/dhyan 18 18 ../profiles/calibre
+8
hosts/profiles/gonic/default.nix
··· 9 9 mossnet.gonic.user = "headphones"; 10 10 mossnet.gonic.group = "audio"; 11 11 networking.firewall.allowedTCPPorts = [ 4747 ]; 12 + 13 + users.users.gonic = { 14 + uid = config.ids.uids.headphones; 15 + # isSystemUser = true; 16 + group = "audio"; 17 + home = "/var/lib/headphones"; 18 + createHome = true; 19 + }; 12 20 }
+1
hosts/profiles/headphones/default.nix
··· 4 4 enable = true; 5 5 host = "0.0.0.0"; 6 6 port = 8181; 7 + package = "${pkgs.unstable.headphones}"; 7 8 user = "headphones"; 8 9 group = "audio"; 9 10 dataDir = "/data/music";