further attempts to fix the issue

This commit is contained in:
Fishandchips321 2026-02-28 18:21:35 +00:00
parent 4827e84097
commit a2c3affd4c
2 changed files with 8 additions and 7 deletions

View file

@ -19,14 +19,14 @@ in
programs.niri.enable = true; programs.niri.enable = true;
services.displayManager.ly.enable = true; services.displayManager.ly.enable = true;
# environment.systemPackages = with pkgs; lib.mkIf cfg.quickshell [quickshell]; quickshell-packages = lib.mkIf cfg.quickshell (with pkgs; [quickshell]);
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
alacritty alacritty
wl-clipboard wl-clipboard
] ]
++ lib.mkIf cfg.quickshell [quickshell]; ++ quickshell-packages;
programs.waybar.enable = lib.mkIf cfg.waybar true; programs.waybar.enable = lib.mkIf cfg.waybar true;
}; };

View file

@ -14,11 +14,7 @@ in
yazi.enable = true; yazi.enable = true;
}; };
environment.systemPackages = with pkgs; [ optional-packages = lib.mkIf cfg.optional.programs (with pkgs; [
nerd-fonts.ubuntu
nerd-fonts.ubuntu-mono
]
++ lib.mkIf cfg.optional-programs (with pkgs; [
ffmpeg_7 ffmpeg_7
p7zip p7zip
jq jq
@ -30,5 +26,10 @@ in
resvg resvg
imagemagick imagemagick
]); ]);
environment.systemPackages = [
nerd-fonts.ubuntu
nerd-fonts.ubuntu-mono
] ++ optional-packages;
}; };
} }