puzzlevision/modules/home-manager/themes/gruvbox/plasma.nix
Jo 339bd28d1d [general] add work and gaming user, tweak configs
feat: added new ssh configuration modules for home-manager

feat: add user work with configurations for my work environment

feat: added gaming user with configuration for my gaming enviornment eg. lutris and steam
Signed-off-by: Jo <johannesreckers2006@gmail.com>
2024-05-20 18:08:16 +02:00

18 lines
No EOL
355 B
Nix

{
inputs,
pkgs,
outputs,
lib,
...
}: {
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";
};
}