1
0
forked from extern/nix-config

nix: Update version to 2.19.2

This fixes an issue where nixFlakes (the stable version of Nix) would
fail when running nixos-rebuild if a path contained non-ASCII
characters.
This commit is contained in:
Donovan Glover 2023-12-14 23:49:03 -05:00
parent 4132163b99
commit 8242938fc9
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 1 additions and 2 deletions

View File

@ -93,7 +93,6 @@
nf = "nix flake";
nfu = "nix flake update";
nfl = "nix flake lock --update-input";
npr = "nixpkgs-review pr --run fish --print-result";
nd = "nix develop --command fish";
nb = "nix build";

View File

@ -2,7 +2,7 @@
{
nix = {
package = pkgs.nixFlakes;
package = with pkgs.nixVersions; nix_2_19;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];