1
0
Fork 0

Compare commits

..

No commits in common. "a0603c7fb9cd747a5476e57167db1b0d95e1b89d" and "c77f1c99d15b3aaf960c6556560ba4353c1b6072" have entirely different histories.

3 changed files with 11 additions and 10 deletions

View file

@ -234,11 +234,11 @@
"nix-secrets": { "nix-secrets": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1725028484, "lastModified": 1724955811,
"narHash": "sha256-bqPYW6fYTul0RpInWxJxaLpn31y0aYi4bMRCnWjhFPk=", "narHash": "sha256-wYm52B5MR4T/cliD5IHRJ2eA27KiAzTUsIE0zc5g70Q=",
"ref": "refs/heads/main", "ref": "709dad0963098dedb6f0c648fef75d95b8f52841",
"rev": "26588368303142902ef91c67ad679da6be5bbeee", "rev": "709dad0963098dedb6f0c648fef75d95b8f52841",
"revCount": 63, "revCount": 62,
"type": "git", "type": "git",
"url": "file:./nix-secrets" "url": "file:./nix-secrets"
}, },
@ -313,11 +313,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1724855419, "lastModified": 1724727824,
"narHash": "sha256-WXHSyOF4nBX0cvHN3DfmEMcLOVdKH6tnMk9FQ8wTNRc=", "narHash": "sha256-0XH9MJk54imJm+RHOLTUJ7e+ponLW00tw5ke4MTVa1Y=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ae2fc9e0e42caaf3f068c1bfdc11c71734125e06", "rev": "36bae45077667aff5720e5b3f1a5458f51cf0776",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -48,6 +48,7 @@
nix-flatpak, nix-flatpak,
nixos-hardware, nixos-hardware,
nixpkgs, nixpkgs,
nixpkgs-unstable,
nix-secrets, nix-secrets,
... ...
}: }:

View file

@ -59,8 +59,8 @@ in
}; };
# Configure NixOS to use the same software channel as Flakes # Configure NixOS to use the same software channel as Flakes
registry.nixpkgs.flake = inputs.nixpkgs; registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
# Configure remote build machines # Configure remote build machines
# To enable remote builds for a specific host, add `nix.distributedBuilds = true;` to its config # To enable remote builds for a specific host, add `nix.distributedBuilds = true;` to its config