about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-05-18 21:54:04 +0900
committersefidel <contact@sefidel.net>2024-05-18 21:54:10 +0900
commit4223c5a73d3b1fe202e14735ea23b01112eb4e2f (patch)
treea892d526bdfa442598d0a2d12730603ac0856888
parent136672762922c08819f1c6796abcd490495a5c98 (diff)
downloadinfra-4223c5a73d3b1fe202e14735ea23b01112eb4e2f.tar.gz
infra-4223c5a73d3b1fe202e14735ea23b01112eb4e2f.zip
feat(modules/flakes): use nixVersions.latest
* Breaking change introduced in https://github.com/NixOS/nixpkgs/commit/2b4e18f3d4a7b80af21b640c0970f83b34efceff
-rw-r--r--modules/flakes.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/flakes.nix b/modules/flakes.nix
index 4297fda..729b791 100644
--- a/modules/flakes.nix
+++ b/modules/flakes.nix
@@ -12,7 +12,7 @@ in
 
   config = lib.mkIf config.nix.flakes.enable {
     nix = {
-      package = pkgs.nixUnstable;
+      package = pkgs.nixVersions.latest;
       experimentalFeatures = "nix-command flakes";
 
       registry.nixpkgs.flake = inputs.unstable;