modularize nix version choice

This commit is contained in:
Thilo Billerbeck 2024-06-05 01:00:27 +02:00
parent df6cecdc98
commit 1e4fd788ed
5 changed files with 32 additions and 4 deletions
configs/thilo-laptop

View file

@ -21,6 +21,12 @@
home.sessionVariables = {
LD_LIBRARY_PATH = "${pkgs.libGL}/lib";
};
nix = {
package = pkgs.nixVersions.latest;
};
home.packages = with pkgs; [ pkgs.nixVersions.latest ];
};
};
}