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>
27 lines
No EOL
420 B
Nix
27 lines
No EOL
420 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
outputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
outputs.homeManagerModules.themes.gruvbox.plasma
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
kdePackages.sierra-breeze-enhanced
|
|
kde-rounded-corners
|
|
];
|
|
|
|
# Plasma configuration
|
|
programs.plasma = {
|
|
enable = true;
|
|
|
|
workspace = {
|
|
clickItemTo = "select";
|
|
};
|
|
};
|
|
} |