Trying something else

This commit is contained in:
2026-02-16 13:36:17 -07:00
parent 5db8d35a2f
commit c2694f46a2
11 changed files with 232 additions and 126 deletions

17
modules/system.nix Normal file
View File

@@ -0,0 +1,17 @@
{ 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;
}