fix(hosts/orion): use default nix version
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 37s

Problem: Latest versions of `nix` seem to segfault on flake updates
Solution: Use a known stable version of `nix`
This commit is contained in:
Price Hiller 2024-12-06 23:56:42 -06:00
parent 42ed0c978b
commit 5befa8a7b0
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,9 +1,8 @@
{ inputs, pkgs, ... }: { inputs, ... }:
{ {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix = { nix = {
package = pkgs.nixVersions.latest;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
settings = { settings = {
experimental-features = [ experimental-features = [
@ -29,4 +28,4 @@
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };
}; };
} }