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

View File

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