os/shared/home/nix.nix

17 lines
No EOL
203 B
Nix

{ ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
};
nixpkgs.config = {
allowUnfree = true;
};
nixpkgs.overlays = [
(import ../overlay.nix)
];
}