aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-04-05 16:34:49 -0700
committerFranck Cuny <franck@fcuny.net>2025-04-05 16:34:49 -0700
commitb1db9a1802d95008ff17c820ff1ef316a381f56f (patch)
tree4dbbf603d9c1c5e12894ee785267505b990d3ebe
parentMerge pull request #14 from fcuny/update_flake_lock_action (diff)
downloadinfra-b1db9a1802d95008ff17c820ff1ef316a381f56f.tar.gz
install iterm2 and remove wezterm
-rw-r--r--nix/machines/darwin-shared.nix1
-rw-r--r--nix/users/fcuny/dev.nix61
2 files changed, 1 insertions, 61 deletions
diff --git a/nix/machines/darwin-shared.nix b/nix/machines/darwin-shared.nix
index 8852dc3..f7e469d 100644
--- a/nix/machines/darwin-shared.nix
+++ b/nix/machines/darwin-shared.nix
@@ -100,6 +100,7 @@
"1password-cli"
"docker"
"element"
+ "iterm2"
"transmission"
"vlc"
"wireshark"
diff --git a/nix/users/fcuny/dev.nix b/nix/users/fcuny/dev.nix
index b738695..c73d728 100644
--- a/nix/users/fcuny/dev.nix
+++ b/nix/users/fcuny/dev.nix
@@ -20,67 +20,6 @@
rustup
];
- # https://wezterm.org/config/lua/general.html
- programs.wezterm = {
- enable = true;
- extraConfig = ''
- local config = {}
- if wezterm.config_builder then
- config = wezterm.config_builder()
- end
-
- config.color_scheme = 'Catppuccin Mocha'
-
- config.scrollback_lines = 10000
-
- config.font = wezterm.font("Source Code Pro", {
- weight = "Light",
- })
- config.font_size = 16.0
-
- config.window_padding = {
- left = 10,
- right = 10,
- top = 10,
- bottom = 10
- }
-
- local act = wezterm.action
- config.keys = {
- -- Override CMD+t to always start new tabs in the home directory.
- { key = 't', mods = 'SUPER', action = act.SpawnCommandInNewTab { cwd = wezterm.home_dir } },
- }
-
- config.audible_bell = "Disabled"
- config.visual_bell = {
- fade_in_duration_ms = 75,
- fade_out_duration_ms = 75,
- target = 'CursorColor',
- };
-
- config.hide_tab_bar_if_only_one_tab = true
- config.use_fancy_tab_bar = true
- config.tab_bar_at_bottom = true
- config.inactive_pane_hsb = {
- saturation = 0.0,
- brightness = 1.0,
- }
-
- config.term = "xterm-256color"
-
- config.front_end = "WebGpu"
-
- -- Set initial size
- config.initial_cols = 120
- config.initial_rows = 36
-
- -- Since we're managing the binary with nix, no need for this
- config.check_for_updates = false
-
- return config
- '';
- };
-
programs.go = {
enable = true;
goPath = ".local/share/pkg.go";