puzzlevision/modules/home-manager/themes/gruvbox/plasma.nix
Jo cff1ca5701 [general] further improve immutability of KDE config
feat: add resources directory
feat: update KDE config
refactor: remove unused files
2024-05-14 01:34:04 +02:00

15 lines
No EOL
331 B
Nix

{
pkgs,
outputs
}: {
home.packages = with pkgs; [
tela-icon-theme
outputs.packages.x86_64-linux.themes.kde-gruvbox-colors
];
programs.plasma.workspace = {
iconTheme = "Tela-green-dark";
colorScheme = "GruvboxColors";
wallpaper = "${outputs.resources.wallpapers}/gruvbox/green_pokemon_guy.png";
};
}