nix update

Changed files
+3 -5
modules
hosting
+3 -1
flake.nix
···
system.configurationRevision = nixpkgs.lib.mkIf (self ? rev) self.rev;
nixpkgs = {
config.allowUnfree = true;
-
# obsidian
config.permittedInsecurePackages = [
+
# obsidian
"electron-25.9.0"
+
# https://github.com/nix-community/nixd/issues/357
+
"nix-2.16.2"
];
overlays = getSystemOverlays config.nixpkgs.hostPlatform.system config.nixpkgs.config;
# uncomment for cross compilation (https://github.com/NixOS/nix/issues/3843)
-4
modules/hosting/nix-cache.nix
···
config = lib.mkIf cfg.nix-cache.enable {
services.nix-serve = {
enable = true;
-
# https://github.com/NixOS/nix/issues/7704
-
package = pkgs.nix-serve.override {
-
nix = pkgs.nixVersions.nix_2_12;
-
};
secretKeyFile = "${config.custom.secretsDir}/cache-priv-key.pem";
};