Mac system applications in darwin-nix

This commit is contained in:
xenia 2024-06-20 21:00:59 +02:00
parent d66439f80f
commit 27c11e905e

View File

@ -42,13 +42,6 @@
# macos-specific options
environment.systemPackages = with pkgs ; [
binutils
coreutils
home-manager
];
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
@ -92,4 +85,38 @@
}
];
};
environment.systemPackages = with pkgs ; [
binutils
coreutils
home-manager
keepassxc
spotify
discord
audacity
blender
ghidra
gimp
hexfiend
inkscape
wireshark
];
system.defaults.dock.persistent-apps = [
# Finder? LaunchPad?
"${pkgs.keepassxc}/Applications/KeePassXC.app"
"/System/Applications/Calendar.app/"
"/System/Applications/Mail.app/"
"${pkgs.spotify}/Applications/Spotify.app/"
"${pkgs.discord}/Applications/Discord.app/"
"/Applications/Signal.app/"
"/Applications/Firefox Developer Edition.app/"
"/System/Applications/System Settings.app/"
"/Applications/FreeCAD-realthunder.app/"
"/Applications/KiCad/KiCad.app/"
"/Users/xenia/Applications/Home Manager Apps/Alacritty.app"
];
}