Remove irssi and neomutt
This commit is contained in:
parent
a1c5c3eb45
commit
f9277380fc
|
@ -29,7 +29,6 @@
|
|||
./home/default.nix
|
||||
./home/emacs.nix
|
||||
./home/firefox.nix
|
||||
./home/irc.nix
|
||||
];
|
||||
stateVersion = "23.05";
|
||||
};
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
};
|
||||
};
|
||||
mu.enable = lib.mkDefault accountEnabled;
|
||||
neomutt.enable = lib.mkDefault accountEnabled;
|
||||
};
|
||||
icloud = let accountEnabled = true;
|
||||
in rec {
|
||||
|
@ -65,7 +64,6 @@
|
|||
};
|
||||
msmtp.enable = lib.mkDefault accountEnabled;
|
||||
mu.enable = lib.mkDefault accountEnabled;
|
||||
neomutt.enable = lib.mkDefault accountEnabled;
|
||||
};
|
||||
outlook = let
|
||||
host = "127.0.0.1";
|
||||
|
@ -113,7 +111,6 @@
|
|||
};
|
||||
};
|
||||
mu.enable = lib.mkDefault accountEnabled;
|
||||
neomutt.enable = lib.mkDefault accountEnabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -128,47 +125,6 @@
|
|||
outlook = [ "INBOX" ];
|
||||
};
|
||||
};
|
||||
neomutt = {
|
||||
enable = true;
|
||||
checkStatsInterval = 60;
|
||||
sidebar.enable = true;
|
||||
extraConfig = ''
|
||||
color normal default default # Text is "Text"
|
||||
color index color2 default ~N # New Messages are Green
|
||||
color index color1 default ~F # Flagged messages are Red
|
||||
color index color13 default ~T # Tagged Messages are Red
|
||||
color index color1 default ~D # Messages to delete are Red
|
||||
color attachment color5 default # Attachments are Pink
|
||||
color signature color8 default # Signatures are Surface 2
|
||||
color search color4 default # Highlighted results are Blue
|
||||
|
||||
color indicator default color8 # currently highlighted message Surface 2=Background Text=Foreground
|
||||
color error color1 default # error messages are Red
|
||||
color status color15 default # status line "Subtext 0"
|
||||
color tree color15 default # thread tree arrows Subtext 0
|
||||
color tilde color15 default # blank line padding Subtext 0
|
||||
|
||||
color hdrdefault color13 default # default headers Pink
|
||||
color header color13 default "^From:"
|
||||
color header color13 default "^Subject:"
|
||||
|
||||
color quoted color15 default # Subtext 0
|
||||
color quoted1 color7 default # Subtext 1
|
||||
color quoted2 color8 default # Surface 2
|
||||
color quoted3 color0 default # Surface 1
|
||||
color quoted4 color0 default
|
||||
color quoted5 color0 default
|
||||
|
||||
color body color2 default [\-\.+_a-zA-Z0-9]+@[\-\.a-zA-Z0-9]+ # email addresses Green
|
||||
color body color2 default (https?|ftp)://[\-\.,/%~_:?&=\#a-zA-Z0-9]+ # URLs Green
|
||||
color body color4 default (^|[[:space:]])\\*[^[:space:]]+\\*([[:space:]]|$) # *bold* text Blue
|
||||
color body color4 default (^|[[:space:]])_[^[:space:]]+_([[:space:]]|$) # _underlined_ text Blue
|
||||
color body color4 default (^|[[:space:]])/[^[:space:]]+/([[:space:]]|$) # /italic/ text Blue
|
||||
|
||||
color sidebar_flagged color1 default # Mailboxes with flagged mails are Red
|
||||
color sidebar_new color10 default # Mailboxes with new mail are Green
|
||||
'';
|
||||
};
|
||||
};
|
||||
services.mbsync = {
|
||||
enable = true;
|
||||
|
|
|
@ -202,12 +202,10 @@ in ''
|
|||
bind = SUPER, E, moveworkspacetomonitor, name:email current
|
||||
bind = SUPER, E, workspace, name:email
|
||||
bind = SUPER SHIFT, E, movetoworkspace, name:email
|
||||
bind = SUPER ALT, E, exec, [workspace name:email] foot -e neomutt
|
||||
|
||||
bind = SUPER, C, moveworkspacetomonitor, name:chat current
|
||||
bind = SUPER, C, workspace, name:chat
|
||||
bind = SUPER SHIFT, C, movetoworkspace, name:chat
|
||||
bind = SUPER ALT, C, exec, [workspace name:chat] foot -e irssi
|
||||
windowrule = workspace name:chat, (WebCord|teams-for-linux)
|
||||
|
||||
bind = SUPER, G, moveworkspacetomonitor, name:games current
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
"term" = "";
|
||||
"system" = "";
|
||||
"web" = "";
|
||||
"email" = "";
|
||||
"chat" = "";
|
||||
"games" = "";
|
||||
"remote" = "";
|
||||
|
@ -54,7 +53,6 @@
|
|||
"term" = [ ];
|
||||
"system" = [ ];
|
||||
"web" = [ ];
|
||||
"email" = [ ];
|
||||
"chat" = [ ];
|
||||
"games" = [ ];
|
||||
"remote" = [ ];
|
||||
|
|
20
home/irc.nix
20
home/irc.nix
|
@ -1,20 +0,0 @@
|
|||
{ ... }: {
|
||||
programs.irssi = {
|
||||
enable = true;
|
||||
networks = {
|
||||
liberachat = {
|
||||
nick = "xenia3";
|
||||
server = {
|
||||
address = "irc.libera.chat";
|
||||
port = 6697;
|
||||
autoConnect = true;
|
||||
};
|
||||
channels = {
|
||||
nixos.autoJoin = true;
|
||||
emacs.autoJoin = true;
|
||||
systemcrafters.autoJoin = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue