nixcfg/systems/aarch64-darwin/m4/default.nix
Harald Hoyer 0603825f36 chore(nix): remove RustDesk server from aarch64-darwin config
- Deleted `services.rustdesk-server.enable` from the configuration.
- Disables the RustDesk server as it is no longer required or used.
2025-11-24 14:38:52 +01:00

62 lines
914 B
Nix

{ lib, pkgs, ... }:
with lib.metacfg;
{
system.defaults.dock.autohide = false;
imports = [
./../../nixbuild.nix
];
homebrew = {
enable = true;
brews = [
"libusb"
"mas"
];
masApps = { };
onActivation = {
cleanup = "zap";
autoUpdate = true;
upgrade = true;
};
};
metacfg = {
system.homebrew = enabled;
suites = {
common = enabled;
};
tools = {
direnv.enable = true;
alacritty.enable = true;
};
build.enable = true;
};
environment.systemPackages = with pkgs; [
azure-cli
kubectl
kubectx
k9s
attic-client
imagemagick
gh
libvirt
dnsmasq
virt-manager
qemu
claude-code
nodejs
goose-cli
aider-chat
fabric-ai
gemini-cli
opencode
];
users.users.harald.shell = pkgs.fish;
ids.gids.nixbld = 350;
system.stateVersion = 4;
}