1
0
forked from extern/nix-config

nix: Simplify nix options

Writing nix twice here actually makes things easier to read, and should
be preferred over expansion which results in more lines of code.
This commit is contained in:
Donovan Glover 2023-06-05 18:54:33 -04:00
parent 499c80b3e6
commit 46c1c99ab6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -13,12 +13,8 @@
[ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
# nix
nix = {
package = pkgs.nixFlakes;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
};
};
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];
hardware.opengl.driSupport32Bit = true;