plasma and sddm theme
This commit is contained in:
parent
73532eee6e
commit
3635e29149
5 changed files with 72 additions and 2 deletions
28
modules/plasma/default.nix
Normal file
28
modules/plasma/default.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue