18 lines
338 B
Nix
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;
|
|
}
|