My Nix Configuration

[flake] more small tweaks

Changed files
+5 -6
hosts
marvin
packages
anubis-files
src
policies
glide-browser-bin
+1 -1
hosts/marvin/services/grafana.nix
··· 62 62 services.anubis.instances.grafana = { 63 63 settings = { 64 64 BIND = ":${toString d.anubis}"; 65 - POLICY_FNAME = "${self'.packages.anubis-files}/policies/grafana.yaml"; 65 + POLICY_FNAME = "${self'.packages.anubis-files}/policies/default.yaml"; 66 66 TARGET = "http://localhost:${toString d.port}"; 67 67 }; 68 68 };
-1
hosts/marvin/services/pocket-id.nix
··· 1 1 { 2 2 config, 3 - self', 4 3 self, 5 4 ... 6 5 }:
+1 -1
packages/anubis-files/src/policies/nextcloud.yaml
··· 1 1 bots: 2 - - import: CUSTOM/profiles/meta/base.yaml 2 + - import: CUSTOM/policies/meta/base.yaml 3 3 # Allow android apps that I use 4 4 - name: allow-android-apps 5 5 user_agent_regex: Nextcloud-android|DAVx5|ICSx5
+3 -3
packages/glide-browser-bin/package.nix
··· 44 44 45 45 buildInputs = [ 46 46 # keep-sorted start 47 - gtk3 48 47 adwaita-icon-theme 49 - hicolor-icon-theme 50 48 alsa-lib 51 49 dbus-glib 50 + gtk3 51 + hicolor-icon-theme 52 52 libXtst 53 53 # keep-sorted end 54 54 ]; ··· 56 56 runtimeDependencies = [ 57 57 # keep-sorted start 58 58 curl 59 - pciutils 60 59 libva.out 60 + pciutils 61 61 # keep-sorted end 62 62 ]; 63 63