NixFiles/systems/mmacbookpro/nix.nix

21 lines
494 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2023-04-02 16:03:21 +01:00
{
# Enable flakes and nix-command
nix = {
package = pkgs.nixVersions.stable;
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
gc = {
automatic = true;
options = "--delete-older-than 7d";
};
extraOptions = lib.optionalString (pkgs.system == "aarch64-darwin") ''
extra-platforms = x86_64-darwin aarch64-darwin
'';
2023-04-02 16:03:21 +01:00
};
services.nix-daemon.enable = true;
}