.dotfiles/modules/darwin/nixos/default.nix
2025-03-27 01:47:14 +01:00

14 lines
245 B
Nix

_:
{
nix.settings.experimental-features = "nix-command flakes";
nixpkgs = {
hostPlatform = "x86_64-darwin";
overlays = [ outputs.overlays.default ];
config = {
allowUnfree = true;
};
};
system.stateVersion = 4;
}