switch to nixVersions?

This commit is contained in:
Daylin Morgan 2024-05-03 12:39:28 -05:00
parent 8f148db783
commit 164e9bb6eb
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 10 additions and 11 deletions

View file

@ -5,11 +5,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1714485953, "lastModified": 1714602995,
"narHash": "sha256-v6KYvjSdSPI0okx772Yuq7Pj23ng6kBzTI6uUD+M57Y=", "narHash": "sha256-nX91QLYrdUYiVsJ+I6FTD+HLYJXHyoRYiZr6Lho+/6k=",
"owner": "daylinmorgan", "owner": "daylinmorgan",
"repo": "f1multiviewer-flake", "repo": "f1multiviewer-flake",
"rev": "0e2225d43eef6e28295554236d0ab079389f8485", "rev": "b30f5eb20edc9cf260b8b1731454b6a479b91d33",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -489,11 +489,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1714314149, "lastModified": 1714656196,
"narHash": "sha256-yNAevSKF4krRWacmLUsLK7D7PlfuY3zF0lYnGYNi9vQ=", "narHash": "sha256-kjQkA98lMcsom6Gbhw8SYzmwrSo+2nruiTcTZp5jK7o=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cf8cc1201be8bc71b7cbbbdaf349b22f4f99c7ae", "rev": "94035b482d181af0a0f8f77823a790b256b7c3cc",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -9,7 +9,7 @@
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix.package = pkgs.nixUnstable; nix.package = pkgs.nixVersions.latest;
nix.extraOptions = '' nix.extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
@ -21,10 +21,9 @@
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = [
nixd pkgs.nixd
nixfmt-rfc-style pkgs.nixfmt-rfc-style
self.packages.${pkgs.system}.default self.packages.${pkgs.system}.default
inputs.pinix.packages.${pkgs.system}.default inputs.pinix.packages.${pkgs.system}.default
]; ];