Compare commits
5 Commits
eed6a57885
...
af6a0ca69c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af6a0ca69c | ||
|
|
43d3ceaf41 | ||
|
|
79acda67c6 | ||
|
|
3a1745e620 | ||
|
|
ebe51b2dc6 |
@@ -43,6 +43,7 @@ _:
|
||||
"mediaelch"
|
||||
"handbrake"
|
||||
"obs"
|
||||
"qobuz"
|
||||
|
||||
# Productivity Tools
|
||||
"1Password"
|
||||
|
||||
@@ -46,22 +46,21 @@ in
|
||||
# This message is safe to ignore. (https://github.com/dustinlyons/nixos-config/issues/83)
|
||||
|
||||
masApps = {
|
||||
"wireguard" = 1451685025;
|
||||
|
||||
"LibreOffice" = 1630474372;
|
||||
"1Password for Safari" = 1569813296; # (8.10.82)
|
||||
"Affinity Designer 2" = 1616831348;
|
||||
"Affinity Photo 2: Image Editor" = 1616822987;
|
||||
"Affinity Publisher 2" = 1606941598;
|
||||
"Home Assistant" = 1099568401; # (2025.7.1)
|
||||
"DaisyDisk" = 411643860 ; # (4.32)
|
||||
"Fantastical - Calendar" = 975937182;
|
||||
### "1Password: Password Manager" = 1511601750; # (8.11.0) Does not seem to install
|
||||
"1Password for Safari" = 1569813296; # (8.10.82)
|
||||
"Slack for Desktop" = 803453959; # (4.45.60)
|
||||
"Remarkable Desktop" = 1276493162; # (3.19.0)
|
||||
"Home Assistant" = 1099568401; # (2025.7.1)
|
||||
"Ice Cubes for Mastodon" = 6444915884; # (1.11.3)
|
||||
"LibreOffice" = 1630474372;
|
||||
"MQTT Explorer" = 1455214828; # (0.3.5)
|
||||
"WiFi Explorer: Scanner" = 494803304; # (3.5.6)
|
||||
"Night Sky" = 475772902; # 475772902
|
||||
"Remarkable Desktop" = 1276493162; # (3.19.0)
|
||||
"Slack for Desktop" = 803453959; # (4.45.60)
|
||||
"WiFi Explorer: Scanner" = 494803304; # (3.5.6)
|
||||
### "1Password: Password Manager" = 1511601750; # (8.11.0) Does not seem to insta
|
||||
};
|
||||
};
|
||||
|
||||
@@ -108,7 +107,7 @@ in
|
||||
{ path = "/Applications/Slack.app/"; }
|
||||
{
|
||||
path = "/Applications/zoom.us.app/";
|
||||
options = " -l Zooom";
|
||||
options = " -l Zoom";
|
||||
}
|
||||
{ path = "/System/Applications/Messages.app/"; }
|
||||
|
||||
@@ -116,6 +115,7 @@ in
|
||||
{ path = "/Applications/Fantastical.app/"; }
|
||||
# { path = "${pkgs.alacritty}/Applications/Alacritty.app/"; }
|
||||
{ path = "/Applications/Spotify.app/"; }
|
||||
{ path = "/Applications/Qobuz.app/"; }
|
||||
{ path = "/System/Volumes/Preboot/Cryptexes/App/System/Applications/Safari.app/"; }
|
||||
{ path = "/System/Applications/Photos.app/"; }
|
||||
{ path = "/System/Applications/System Settings.app/"; }
|
||||
|
||||
@@ -289,6 +289,20 @@ in
|
||||
|
||||
ssh = {
|
||||
enable = true;
|
||||
|
||||
enableDefaultConfig = false;
|
||||
matchBlocks."*" = {
|
||||
forwardAgent = false;
|
||||
addKeysToAgent = "no";
|
||||
compression = false;
|
||||
serverAliveInterval = 0;
|
||||
serverAliveCountMax = 3;
|
||||
hashKnownHosts = false;
|
||||
userKnownHostsFile = "~/.ssh/known_hosts";
|
||||
controlMaster = "no";
|
||||
controlPath = "~/.ssh/master-%r@%n:%p";
|
||||
controlPersist = "no";
|
||||
};
|
||||
includes = [
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux "/home/${user}/.ssh/config_external")
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin "/Users/${user}/.ssh/config_external")
|
||||
|
||||
@@ -9,6 +9,7 @@ with pkgs;
|
||||
|
||||
# General packages for development and system management
|
||||
#alacritty
|
||||
ansible
|
||||
aspell
|
||||
aspellDicts.en
|
||||
bash-completion
|
||||
@@ -27,6 +28,7 @@ with pkgs;
|
||||
nixfmt-rfc-style
|
||||
difftastic
|
||||
# Development
|
||||
|
||||
autoconf
|
||||
autoconf-archive
|
||||
automake
|
||||
@@ -39,11 +41,14 @@ with pkgs;
|
||||
clang-tools
|
||||
dfu-util
|
||||
go
|
||||
jq # json tool
|
||||
jd-diff-patch #json diff patch
|
||||
# Encryption and security tools
|
||||
age
|
||||
sops
|
||||
gnupg
|
||||
libfido2
|
||||
just
|
||||
|
||||
# Cloud-related tools and SDKs
|
||||
docker
|
||||
@@ -66,6 +71,9 @@ with pkgs;
|
||||
nodejs
|
||||
|
||||
# Text and terminal utilities
|
||||
xquartz
|
||||
xterm
|
||||
|
||||
htop
|
||||
hunspell
|
||||
iftop
|
||||
@@ -81,8 +89,15 @@ with pkgs;
|
||||
# zsh-powerlevel10k
|
||||
|
||||
# Python packages
|
||||
python3
|
||||
# python3
|
||||
virtualenv
|
||||
(python3.withPackages (python-pkgs: with python-pkgs; [
|
||||
pandas
|
||||
requests
|
||||
tkinter
|
||||
]))
|
||||
|
||||
|
||||
|
||||
# Rust Related
|
||||
rustc
|
||||
|
||||
Reference in New Issue
Block a user