mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 02:13:06 +01:00
15 lines
No EOL
331 B
Nix
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";
|
|
};
|
|
} |