2024-05-14 01:34:04 +02:00
|
|
|
{
|
2024-05-20 18:08:16 +02:00
|
|
|
inputs,
|
2024-05-14 01:34:04 +02:00
|
|
|
pkgs,
|
2024-05-20 18:08:16 +02:00
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
...
|
2024-05-14 01:34:04 +02:00
|
|
|
}: {
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|