fix: get latest nix ver to fix vuln
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
100e93bbdd
commit
c8c4063a43
1 changed files with 11 additions and 1 deletions
|
@ -29,7 +29,17 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.nixVersions.nix_2_24;
|
# FIXME: vulnerability with <= 2.24.5
|
||||||
|
package = pkgs.nixVersions.nix_2_24.overrideAttrs (o: rec {
|
||||||
|
version = "2.24.6";
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "NixOS";
|
||||||
|
repo = "nix";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-kgq3B+olx62bzGD5C6ighdAoDweLq+AebxVHcDnKH4w=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
# Edit nix.conf
|
# Edit nix.conf
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue