dotfiles/machines/common/default.nix

23 lines
475 B
Nix
Raw Normal View History

2023-05-14 09:27:30 +02:00
{pkgs, ...}: {
2023-06-06 21:30:50 +02:00
imports = [
./shared
];
2023-03-02 07:30:03 +01:00
nixpkgs.config.allowUnfree = true;
nix = {
gc.automatic = true;
package = pkgs.nixVersions.nix_2_16;
settings = {
auto-optimise-store = pkgs.stdenv.isLinux;
experimental-features = [
2023-06-16 13:39:39 +02:00
"auto-allocate-uids"
"flakes"
"nix-command"
"repl-flake"
];
tarball-ttl = 604800;
trusted-users = ["@staff" "@sudo" "@wheel"];
warn-dirty = false;
};
2023-02-13 23:33:09 +01:00
};
}