difftreelog
build upgrade nixpkgs
in: trunk
4 files changed
flake.lockdiffbeforeafterboth4 packageslockfile v7
Might be heavy and slow!
flake-utils
7e5bf39github.com/numtide/flake-utils↘ 0↖ 1sourcegithub:numtide/flake-utilschecksumsha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=used byroot
workspace↘ 3↖ 0rust-overlay
4e79ebfgithub.com/oxalica/rust-overlay↘ 0↖ 1sourcegithub:oxalica/rust-overlaychecksumsha256-7OAtO2V8omtPaoFBASTfPA5m8MzN5LX8agk0k5p8dH0=used by
flake.nixdiffbeforeafterboth--- a/flake.nix
+++ b/flake.nix
@@ -24,6 +24,7 @@
rust
cargo-edit
cargo-udeps
+ cargo-fuzz
pkgconfig
openssl
lib/default.nixdiffbeforeafterboth--- a/lib/default.nix
+++ b/lib/default.nix
@@ -19,10 +19,12 @@
map
(
name: {
- inherit name; value = nixpkgs.lib.nixosSystem {
- system = configuredHosts.${name}.system;
- modules = configuredHosts.${name}.modules;
- };
+ inherit name;
+ value = nixpkgs.lib.nixosSystem {
+ system = configuredHosts.${name}.system;
+ modules = configuredHosts.${name}.modules;
+ pkgs = import nixpkgs { system = configuredHosts.${name}.system; };
+ };
}
)
(builtins.attrNames root.config.hosts)
modules/fleet/secrets.nixdiffbeforeafterboth--- a/modules/fleet/secrets.nix
+++ b/modules/fleet/secrets.nix
@@ -78,7 +78,7 @@
{
secrets = (mapAttrs cleanupSecret
(filterAttrs (_: v: builtins.elem host v.owners) config.sharedSecrets)
- ) // (mapAttrs cleanupSecret (if config.hostSecrets ? host then config.hostSecrets.${host} else {}));
+ ) // (mapAttrs cleanupSecret (config.hostSecrets.${host} or {}));
}
];
});