mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
59eb54e1e5
No longer needed since I plan to just use the wine from nixpkgs.
13 lines
195 B
Nix
13 lines
195 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
};
|
|
}
|