further attempts to fix the issue
This commit is contained in:
parent
4827e84097
commit
a2c3affd4c
2 changed files with 8 additions and 7 deletions
|
|
@ -19,14 +19,14 @@ in
|
|||
programs.niri.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; [
|
||||
alacritty
|
||||
wl-clipboard
|
||||
|
||||
]
|
||||
++ lib.mkIf cfg.quickshell [quickshell];
|
||||
++ quickshell-packages;
|
||||
|
||||
programs.waybar.enable = lib.mkIf cfg.waybar true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,11 +14,7 @@ in
|
|||
yazi.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nerd-fonts.ubuntu
|
||||
nerd-fonts.ubuntu-mono
|
||||
]
|
||||
++ lib.mkIf cfg.optional-programs (with pkgs; [
|
||||
optional-packages = lib.mkIf cfg.optional.programs (with pkgs; [
|
||||
ffmpeg_7
|
||||
p7zip
|
||||
jq
|
||||
|
|
@ -30,5 +26,10 @@ in
|
|||
resvg
|
||||
imagemagick
|
||||
]);
|
||||
|
||||
environment.systemPackages = [
|
||||
nerd-fonts.ubuntu
|
||||
nerd-fonts.ubuntu-mono
|
||||
] ++ optional-packages;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue