Fix typo in system package definition for plasma

This commit is contained in:
Evie Litherland-Smith 2023-05-18 11:52:31 +01:00
parent b49e18f0db
commit c5387b01b8

View file

@ -4,11 +4,11 @@ in {
imports = [./xserver.nix ./sddm.nix]; imports = [./xserver.nix ./sddm.nix];
services.xserver.desktopManager.plasma5.enable = true; services.xserver.desktopManager.plasma5.enable = true;
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = [
libsForQt5.lightly pkgs.libsForQt5.lightly
libsForQt5.kwindowsystem pkgs.libsForQt5.kwindowsystem
catppuccin-kde pkgs.catppuccin-kde
papirus-icon-theme pkgs.papirus-icon-theme
delta-icon-theme delta-icon-theme.delta-icon-theme
]; ];
} }