1
0
forked from extern/nix-config
donovanglover-nix-config/modules/nix.nix
Donovan Glover 59eb54e1e5
nix: Remove nix-gaming cache
No longer needed since I plan to just use the wine from nixpkgs.
2023-06-22 09:32:35 -04:00

13 lines
195 B
Nix

{ pkgs, ... }:
{
nix = {
package = pkgs.nixFlakes;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
auto-optimise-store = true;
};
};
}