From 5befa8a7b0754f0b512bd835cce91a1dd629f3b7 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 6 Dec 2024 23:56:42 -0600 Subject: [PATCH] fix(hosts/orion): use default nix version Problem: Latest versions of `nix` seem to segfault on flake updates Solution: Use a known stable version of `nix` --- hosts/orion/modules/nix.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/orion/modules/nix.nix b/hosts/orion/modules/nix.nix index 2aedb27b..a8fdadc1 100644 --- a/hosts/orion/modules/nix.nix +++ b/hosts/orion/modules/nix.nix @@ -1,9 +1,8 @@ -{ inputs, pkgs, ... }: +{ inputs, ... }: { nixpkgs.config.allowUnfree = true; nix = { - package = pkgs.nixVersions.latest; nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; settings = { experimental-features = [ @@ -29,4 +28,4 @@ options = "--delete-older-than 7d"; }; }; -} \ No newline at end of file +}