Use an older version of nix for a bit

This commit is contained in:
Charlotte Van Petegem 2023-06-09 13:53:17 +02:00
parent 14ad00e480
commit 5923886184
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ in
dates = "hourly"; dates = "hourly";
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };
package = pkgs.nixStable; package = pkgs.nixVersions.nix_2_14;
settings = { settings = {
auto-optimise-store = true; auto-optimise-store = true;
substituters = [ substituters = [

View file

@ -17,7 +17,7 @@
packages = [ packages = [
pkgs.agenix pkgs.agenix
# Use nixos-rebuild from flake, since it might be patched # Use nixos-rebuild from flake, since it might be patched
pkgs.nixos-rebuild (pkgs.nixos-rebuild.override { nix = pkgs.nixVersions.nix_2_14; })
pkgs.nixpkgs-fmt pkgs.nixpkgs-fmt
]; ];
} }