Compare commits

..

No commits in common. "b2850e8b79155b6e067c15f693a0d0dbf59ae5ab" and "969e89cda34dbd0c4b6db868b4ca8378fe08d336" have entirely different histories.

3 changed files with 6 additions and 12 deletions

View File

@ -5,7 +5,6 @@
mpv # Video viewer
sxiv # Image viewer
mupdf # PDF viewer
zathura # PDF viewer
];
};

View File

@ -33,11 +33,8 @@ in {
config = lib.mkIf config.gui.enable {
sound.enable = true;
# Enable PipeWire
services.pipewire = {
enable = true;
pulse.enable = true;
};
# Enable PulseAudio
hardware.pulseaudio.enable = true;
# These aren't necessary, but helpful for the user
environment.systemPackages = with pkgs; [
@ -55,8 +52,7 @@ in {
# Make sure that Volnoti actually starts (home-manager doesn't start
# user daemon's automatically)
startup = [{
command =
"systemctl --user restart volnoti --alpha 0.15 --radius 40 --timeout 0.2";
command = "systemctl --user restart volnoti";
always = true;
notification = false;
}];

View File

@ -51,7 +51,7 @@
"<Enter>" = ":view<Enter>";
d = ":prompt 'Really delete this message?' 'delete-message'<Enter>";
D = ":move Trash<Enter>";
D = ":delete<Enter>";
A = ":archive flat<Enter>";
C = ":compose<Enter>";
@ -81,7 +81,7 @@
O = ":open<Enter>";
S = ":save<space>";
"|" = ":pipe<space>";
D = ":move Trash<Enter>";
D = ":delete<Enter>";
A = ":archive flat<Enter>";
"<C-l>" = ":open-link <space>";
@ -167,14 +167,13 @@
"message/rfc822" =
"${pkgs.gawk}/bin/awk -f ${pkgs.aerc}/share/aerc/filters/colorize";
"application/x-sh" = "${pkgs.bat}/bin/bat -fP -l sh";
"application/pdf" = "${pkgs.zathura}/bin/zathura -";
};
};
};
accounts.email.accounts.home.aerc = {
enable = true;
extraAccounts = {
check-mail = "5m";
check-mail = "1m";
check-mail-cmd = "${pkgs.isync}/bin/mbsync -a";
};
};