aboutsummaryrefslogtreecommitdiff
path: root/nix/profiles/home-manager/shell.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-05-23 09:20:17 -0700
committerFranck Cuny <franck@fcuny.net>2024-05-23 09:20:17 -0700
commit49588c5716557635f945752436afb8f16b2230d8 (patch)
tree4a86b1e40d7c72c58095d2a184739a320505fa6d /nix/profiles/home-manager/shell.nix
parentchore: update flake (diff)
downloadinfra-49588c5716557635f945752436afb8f16b2230d8.tar.gz
clean up a bunch of home-manager stuff
No need for alacritty, tmux, firefox, and zsh.
Diffstat (limited to '')
-rw-r--r--nix/profiles/home-manager/shell.nix43
1 files changed, 0 insertions, 43 deletions
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;