dotfiles/nixos/nix.nix

22 lines
399 B
Nix
Raw Normal View History

{ inputs, ... }:
{
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
registry.nixpkgs.flake = inputs.nixpkgs;
settings = {
keep-outputs = true;
keep-derivations = true;
};
};
nixpkgs.overlays = with inputs; [
2023-08-05 01:30:28 -06:00
nix.overlays.default
(import ./overlay.nix)
];
# Allow all the things
nixpkgs.config.allowUnfree = true;
}