Jo
339bd28d1d
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>
18 lines
No EOL
355 B
Nix
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";
|
|
};
|
|
} |