Files
dart/modules/system.nix
T
2026-02-16 13:36:17 -07:00

18 lines
338 B
Nix

{ rust-overlay, ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
};
nixpkgs = {
hostPlatform = "aarch64-darwin";
config.allowUnfree = true;
overlays = [ rust-overlay.overlays.default ];
};
programs.zsh.enable = true;
system.primaryUser = "atridad";
system.stateVersion = 6;
}