Fix API changes from updates
Some checks failed
CI / Check, build and cache Nix flake (push) Failing after 16m14s

This commit is contained in:
Jack O'Sullivan 2024-03-18 20:23:52 +00:00
parent ace979c226
commit 7d90b5ecb8
4 changed files with 18 additions and 20 deletions

View File

@ -101,6 +101,12 @@ in
dnssec = "false"; dnssec = "false";
}; };
pipewire.extraConfig.pipewire = {
"context.properties" = {
"default.clock.quantum" = 128;
"default.clock.max-quantum" = 128;
};
};
blueman.enable = true; blueman.enable = true;
}; };
@ -131,14 +137,6 @@ in
qperf qperf
ethtool ethtool
]; ];
environment.etc = {
"pipewire/pipewire.conf.d/sample-size.conf".text = ''
context.properties = {
default.clock.quantum = 128
default.clock.max-quantum = 128
}
'';
};
nix = { nix = {
gc.automatic = false; gc.automatic = false;

View File

@ -171,14 +171,14 @@ in
]; ];
}; };
sliding-sync = { };
enable = true; matrix-sliding-sync = {
createDatabase = false; enable = true;
environmentFile = config.age.secrets."chatterbox/syncv3.env".path; createDatabase = false;
settings = { environmentFile = config.age.secrets."chatterbox/syncv3.env".path;
SYNCV3_BINDADDR = "[::]:8009"; settings = {
SYNCV3_SERVER = "http://localhost:8008"; SYNCV3_BINDADDR = "[::]:8009";
}; SYNCV3_SERVER = "http://localhost:8008";
}; };
}; };

View File

@ -97,12 +97,12 @@ in
hostName = "cloud.${domain}"; hostName = "cloud.${domain}";
https = true; https = true;
config = { config = {
extraTrustedDomains = [ "cloud-local.${domain}" ];
adminpassFile = config.age.secrets."kelder/nextcloud-root.txt".path; adminpassFile = config.age.secrets."kelder/nextcloud-root.txt".path;
defaultPhoneRegion = "IE";
}; };
extraOptions = { settings = {
updatechecker = false; updatechecker = false;
trusted_domains = [ "cloud-local.${domain}" ];
default_phone_region = "IE";
}; };
}; };
}; };

View File

@ -6,7 +6,7 @@ let
cfg = config.my.nvme; cfg = config.my.nvme;
nvme-cli = pkgs.nvme-cli.override { nvme-cli = pkgs.nvme-cli.override {
libnvme = pkgs.libnvme.overrideAttrs (o: { libnvme = pkgs.libnvme.overrideAttrs (o: {
patches = o.patches ++ [ ./libnvme-hostconf.patch ]; patches = (if (o ? patches) then o.patches else [ ]) ++ [ ./libnvme-hostconf.patch ];
}); });
}; };