Skip to content

Commit

Permalink
Remove wezterm configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed May 29, 2024
1 parent 129226d commit a978c43
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions home/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ in {
terminal = "alacritty";
};
is-dark-theme = true;
wezterm.enable = false;
}
// (
if isLinux
Expand Down
12 changes: 11 additions & 1 deletion home/wezterm.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
programs.wezterm = {
lib,
config,
...
}:
with lib; let
cfg = config.me.wezterm;
in {
options = {
me.wezterm.enable = mkEnableOption "wezterm configuration";
};
config.programs.wezterm = mkIf cfg.enable {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
Expand Down
1 change: 0 additions & 1 deletion system/darwin/mba/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"todoist"
"visual-studio-code"
"vlc"
"wezterm"
"wireshark"
"xquartz"
];
Expand Down

0 comments on commit a978c43

Please sign in to comment.