dotfiles/machines/common/default.nix

14 lines
362 B
Nix
Raw Normal View History

2023-05-14 09:27:30 +02:00
{pkgs, ...}: {
2023-03-02 07:30:03 +01:00
nixpkgs.config.allowUnfree = true;
nix = {
gc.automatic = true;
package = pkgs.nixVersions.nix_2_15;
settings = {
experimental-features = ["nix-command" "flakes" "repl-flake"];
auto-optimise-store = pkgs.stdenv.isLinux;
# consider downloaded tarballs as fresh for 7 days
tarball-ttl = 604800;
};
2023-02-13 23:33:09 +01:00
};
}