87 lines
1.5 KiB
Nix
87 lines
1.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation.autoUpdate = true;
|
|
onActivation.upgrade = true;
|
|
#onActivation.cleanup = "zap";
|
|
|
|
casks = [
|
|
"telegram"
|
|
"blip"
|
|
"meta"
|
|
"doppler"
|
|
"steam"
|
|
"logi-options+"
|
|
"cryptomator"
|
|
"crossover"
|
|
"clone-hero"
|
|
"mullvadvpn"
|
|
"vscodium"
|
|
"obs"
|
|
"qbittorrent@lt20"
|
|
"krita"
|
|
"arc"
|
|
"tailscale"
|
|
"blender"
|
|
"UTM"
|
|
"Keka"
|
|
"Secretive"
|
|
"Loop"
|
|
"HiddenBar"
|
|
"Obsidian"
|
|
"RayCast"
|
|
"Discord"
|
|
"Element"
|
|
"IINA"
|
|
"appcleaner"
|
|
"wireshark"
|
|
"ghostty"
|
|
"nvidia-geforce-now"
|
|
"teamspeak-client@beta"
|
|
"mac-mouse-fix"
|
|
"firefox"
|
|
"prismlauncher"
|
|
"orion"
|
|
];
|
|
|
|
masApps = {
|
|
"Bitwarden" = 1352778147;
|
|
"DropOver" = 1355679052;
|
|
};
|
|
};
|
|
|
|
system.primaryUser = "duumxh";
|
|
users.users.duumxh.home = "/Users/duumxh";
|
|
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
|
|
programs.zsh.enable = true;
|
|
programs.gnupg.agent.enable = true;
|
|
|
|
security.pam.services.sudo_local.touchIdAuth = true;
|
|
system.stateVersion = 5;
|
|
system.defaults = {
|
|
screencapture.type = "png";
|
|
dock = {
|
|
autohide = true;
|
|
mineffect = "scale";
|
|
minimize-to-application = true;
|
|
mru-spaces = false;
|
|
show-recents = false;
|
|
tilesize = 48;
|
|
};
|
|
|
|
finder = {
|
|
AppleShowAllFiles = true;
|
|
AppleShowAllExtensions = true;
|
|
ShowPathbar = true;
|
|
ShowStatusBar = true;
|
|
};
|
|
};
|
|
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|