Skip to content

Commit

Permalink
Update SDDM configuration and add Qt packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwclark committed Mar 9, 2024
1 parent d70f10e commit 8b64b1e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions hosts/common/optional/displaymanager/sddm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@ in

services = {
xserver = {
enable = true;
enable = lib.mkDefault true;
displayManager = {
defaultSession = "plasma";
sddm = {
enable = true;
wayland.enable = true;
theme = "breeze";
theme = "${sddmTheme}";
};
};
};
};
environment.systemPackages = with pkgs; [
libsForQt5.qt5.qtquickcontrols2
# Is this qtgraphicaleffects functionaility in QT Quick for QT6?
libsForQt5.qt5.qtgraphicaleffects
];
}

0 comments on commit 8b64b1e

Please sign in to comment.