plasma and sddm theme

This commit is contained in:
twoneis 2024-06-24 00:10:41 +02:00
parent 73532eee6e
commit 3635e29149
5 changed files with 72 additions and 2 deletions

View file

@ -0,0 +1,28 @@
{ pkgs, lib, config, ... }: lib.mkIf (config.withPlasma) {
services = {
displayManager.sddm = {
enable = true;
wayland = {
enable = true;
compositor = "kwin";
};
theme = "where_is_my_sddm_theme";
};
desktopManager.plasma6 = {
enable = true;
};
};
environment = {
plasma6.excludePackages = with pkgs.kdePackages; [
plasma-browser-integration
konsole
oxygen
];
systemPackages = [ (pkgs.where-is-my-sddm-theme.override ({ themeConfig = builtins.readFile ./sddm-theme.conf; })) ];
};
programs.dconf.enable = true;
}