19 lines
313 B
Nix
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;
|
|
}
|