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
···
services.anubis.instances.grafana = {
settings = {
BIND = ":${toString d.anubis}";
-
POLICY_FNAME = "${self'.packages.anubis-files}/policies/grafana.yaml";
TARGET = "http://localhost:${toString d.port}";
};
};
···
services.anubis.instances.grafana = {
settings = {
BIND = ":${toString d.anubis}";
+
POLICY_FNAME = "${self'.packages.anubis-files}/policies/default.yaml";
TARGET = "http://localhost:${toString d.port}";
};
};
-1
hosts/marvin/services/pocket-id.nix
···
{
config,
-
self',
self,
...
}:
···
{
config,
self,
...
}:
+1 -1
packages/anubis-files/src/policies/nextcloud.yaml
···
bots:
-
- import: CUSTOM/profiles/meta/base.yaml
# Allow android apps that I use
- name: allow-android-apps
user_agent_regex: Nextcloud-android|DAVx5|ICSx5
···
bots:
+
- import: CUSTOM/policies/meta/base.yaml
# Allow android apps that I use
- name: allow-android-apps
user_agent_regex: Nextcloud-android|DAVx5|ICSx5
+3 -3
packages/glide-browser-bin/package.nix
···
buildInputs = [
# keep-sorted start
-
gtk3
adwaita-icon-theme
-
hicolor-icon-theme
alsa-lib
dbus-glib
libXtst
# keep-sorted end
];
···
runtimeDependencies = [
# keep-sorted start
curl
-
pciutils
libva.out
# keep-sorted end
];
···
buildInputs = [
# keep-sorted start
adwaita-icon-theme
alsa-lib
dbus-glib
+
gtk3
+
hicolor-icon-theme
libXtst
# keep-sorted end
];
···
runtimeDependencies = [
# keep-sorted start
curl
libva.out
+
pciutils
# keep-sorted end
];