From 49588c5716557635f945752436afb8f16b2230d8 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 23 May 2024 09:20:17 -0700 Subject: clean up a bunch of home-manager stuff No need for alacritty, tmux, firefox, and zsh. --- nix/profiles/home-manager/shell.nix | 43 ------------------------------------- 1 file changed, 43 deletions(-) (limited to 'nix/profiles/home-manager/shell.nix') diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix index 2f86232..fe7e4ff 100644 --- a/nix/profiles/home-manager/shell.nix +++ b/nix/profiles/home-manager/shell.nix @@ -54,49 +54,6 @@ SHELL = "${pkgs.fish}/bin/fish"; }; - programs.alacritty = { - enable = true; - settings = { - env = { - TERM = "xterm-256color"; - }; - shell = { - program = "${pkgs.fish}/bin/fish"; - args = [ - "--login" - "-c" - "tmux attach -t base || tmux new -s base" - ]; - }; - font = { - normal.family = "Monaspace Argon"; - bold = { style = "Bold"; }; - size = 16; - }; - }; - }; - - programs.tmux = { - enable = true; - terminal = "xterm-256color"; - escapeTime = 0; - aggressiveResize = true; - baseIndex = 1; - shortcut = "z"; - clock24 = true; - shell = "${pkgs.fish}/bin/fish"; - historyLimit = 50000; # Bigger buffer - extraConfig = '' - setw -g mouse on - - # Avoid date/time taking up space - set -g status-right "" - set -g status-right-length 0 - - set-option -g renumber-windows on - ''; - }; - programs.direnv = { enable = true; nix-direnv.enable = true; -- cgit v1.2.3