dotfiles/machines/common/default.nix

15 lines
309 B
Nix

{pkgs, ...}: {
nixpkgs.config.allowUnfree = true;
nix = {
gc.automatic = true;
package = pkgs.nixVersions.nix_2_15;
settings = {
experimental-features = [
"flakes"
"nix-command"
"repl-flake"
];
auto-optimise-store = pkgs.stdenv.isLinux;
};
};
}