Files
nix/hosts/common/system/configs/nix/default.nix
2024-07-08 20:01:55 +03:00

19 lines
313 B
Nix

{ inputs, ... }:
{
nix = {
settings = {
use-xdg-base-directories = true;
experimental-features = [
"nix-command"
"flakes"
];
};
registry.self.flake = inputs.self;
gc.automatic = true;
optimise.automatic = true;
};
nixpkgs.config.allowUnfree = true;
}