mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-03-14 15:51:32 +01:00
15 lines
331 B
Nix
15 lines
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";
|
||
|
};
|
||
|
}
|