attempt plasma flake
This commit is contained in:
parent
dac2d0cf9c
commit
012e493ad3
12 changed files with 561 additions and 5 deletions
19
flakes/de_plasma/home_manager/theme.nix
Normal file
19
flakes/de_plasma/home_manager/theme.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.ringofstorms.dePlasma;
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
{
|
||||
options = {};
|
||||
config = mkIf (cfg.enable && cfg.appearance.dark.enable) {
|
||||
programs.plasma = {
|
||||
workspace = {
|
||||
colorScheme = "Breeze Dark";
|
||||
lookAndFeel = "org.kde.breezedark.desktop";
|
||||
cursorTheme = "breeze_cursors";
|
||||
};
|
||||
fonts = { }; # keep defaults
|
||||
kscreenlocker = { }; # swaylock analog not applicable; left default
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue