[general] further improve immutability of KDE config
feat: add resources directory feat: update KDE config refactor: remove unused files
This commit is contained in:
parent
bbe6ab62c4
commit
cff1ca5701
13 changed files with 105 additions and 80 deletions
|
@ -1,6 +0,0 @@
|
|||
# Collection of reusable home-manager modules (https://nixos.wiki/wiki/Module)
|
||||
# These shouldn't include personal configurations, but much rather stuff that can be shared across multiple configurations
|
||||
{
|
||||
# List your module files here
|
||||
# my-module = import ./my-module.nix;
|
||||
}
|
15
modules/home-manager/themes/gruvbox/plasma.nix
Normal file
15
modules/home-manager/themes/gruvbox/plasma.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
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";
|
||||
};
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
# Collection of reusable nixos modules (https://nixos.wiki/wiki/Module)
|
||||
# These shouldn't include personal configurations, but much rather stuff that can be shared across multiple configurations
|
||||
{
|
||||
# List your module files here
|
||||
# my-module = import ./my-module.nix;
|
||||
desktop = import ./desktop;
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
kde = import ./kde.nix;
|
||||
gnome = import ./gnome.nix;
|
||||
cosmic = import ./cosmic.nix;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue