diff --git a/darwin/common.nix b/darwin/common.nix index 3ec8853..8d44cae 100644 --- a/darwin/common.nix +++ b/darwin/common.nix @@ -47,7 +47,9 @@ in # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = with pkgs; [ + curl git + coreutils vim wireguard-tools ]; diff --git a/darwin/lcech-mac-veracode.nix b/darwin/lcech-mac-veracode.nix index 17db42f..27ad0ee 100644 --- a/darwin/lcech-mac-veracode.nix +++ b/darwin/lcech-mac-veracode.nix @@ -10,19 +10,15 @@ "keepassxc" ]; - system.defaults = { - dock = { - persistent-apps = [ - "/Applications/Cursor.app" - "/Applications/Firefox.app" - "/Applications/Ghostty.app" - "/Applications/Microsoft Outlook.app" - "/Applications/Slack.app" - "/Applications/Spotify.app" - "/Applications/Thunderbird.app" - "/Applications/zoom.us.app" - "/System/Applications/Notes.app" - ]; - }; - }; + system.defaults.dock.persistent-apps = [ + "/Applications/Cursor.app" + "/Applications/Firefox.app" + "/Applications/Ghostty.app" + "/Applications/Microsoft Outlook.app" + "/Applications/Slack.app" + "/Applications/Spotify.app" + "/Applications/Thunderbird.app" + "/Applications/zoom.us.app" + "/System/Applications/Notes.app" + ]; } diff --git a/home-manager/zsh/common/09-zsh_aliases.zsh b/home-manager/zsh/common/09-zsh_aliases.zsh index 43c5ca8..f58cdf1 100755 --- a/home-manager/zsh/common/09-zsh_aliases.zsh +++ b/home-manager/zsh/common/09-zsh_aliases.zsh @@ -1,5 +1,4 @@ # Allow usage of aliases when using sudo -alias ls='ls --color' alias less='less -R' alias curlTiming="curl -w \" time_namelookup: %{time_namelookup}s\n time_connect: %{time_connect}s\n time_appconnect: %{time_appconnect}s\n time_pretransfer: %{time_pretransfer}s\n time_redirect: %{time_redirect}s\n time_starttransfe r: %{time_starttransfer}s\n ----------\n time_total: %{time_total}s\n\" -o /dev/null"