Fixes for 25.05

This commit is contained in:
Jakob Lechner 2025-05-16 20:26:07 +02:00
parent cdad4059fd
commit f42654b9ad
7 changed files with 12 additions and 9 deletions

View file

@ -3,7 +3,9 @@
{
console.font = "Lat2-Terminus16";
fonts.packages = with pkgs; lib.mkIf config.jalr.gui.enable [
(nerdfonts.override { fonts = [ "Iosevka" ]; })
nerd-fonts.iosevka
nerd-fonts.iosevka-term
nerd-fonts.iosevka-term-slab
font-awesome
powerline-fonts
roboto

View file

@ -13,8 +13,6 @@ lib.mkIf cfg.enable {
services.dovecot2 = {
enable = true;
modules = with pkgs; [ dovecot_pigeonhole ];
enableLmtp = true;
enablePAM = false;
@ -124,6 +122,9 @@ lib.mkIf cfg.enable {
}
'';
};
environment.systemPackages = [ pkgs.dovecot_pigeonhole ];
systemd.services.dovecot2 = {
wants = [ "acme-finished-${cfg.fqdn}.target" ];
after = [ "acme-finished-${cfg.fqdn}.target" ];

View file

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }:
lib.mkIf config.jalr.gui.enable {
hardware.pulseaudio.enable = false;
services.pulseaudio.enable = false;
# FIXME
#hardware.pulseaudio.extraModules = [ pkgs.pulseaudio-modules-bt ];