Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions progs/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
branch = "latest";
imports = [
"plasma"
"klassy"
"rofi"
"dolphin"
];
extras = {
};
Expand All @@ -25,8 +25,8 @@
};
settings = {
plasma.enable = true;
klassy.enable = true;
rofi.enable = true;
dolphin.enable = true;
};
};
in (tools.fullModule {
Expand Down
29 changes: 29 additions & 0 deletions progs/desktop/dolphin.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
config,
lib,
pkgs-list,
parentPathAsList,
tools,
...
}: let
moduleParams = tools.moduleParams rec {
inherit config lib pkgs-list parentPathAsList tools;
name = "dolphin";
subfolder = "dolphin";
main-repo = "nix";
branch = "latest";
options = {
enable = lib.mkEnableOption "Enables ${name} program and related settings.";
};
};
in (tools.fullModule rec {
inherit (moduleParams) config lib pkgs-list parentPathAsList tools;
inherit (moduleParams) name togglable subfolder main-repo branch extras imports specialImports options settings;
inherit (moduleParams) packages currentPathAsList currentDirPath cfg inheritedSettings Common;
Home = {
home.packages = with packages.kdePackages; [
dolphin
dolphin-plugins
];
};
})
9 changes: 8 additions & 1 deletion progs/desktop/plasma.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,18 @@
moduleParams = tools.moduleParams rec {
inherit config lib pkgs-list parentPathAsList tools;
name = "plasma";
subfolder = "plasma";
main-repo = "nix";
branch = "latest";
imports = [
"klassy"
];
options = {
enable = lib.mkEnableOption "Enables ${name} program and related settings.";
};
settings = {
klassy.enable = true;
};
};
in (tools.fullModule rec {
inherit (moduleParams) config lib pkgs-list parentPathAsList tools;
Expand Down Expand Up @@ -249,7 +256,6 @@ in (tools.fullModule rec {
qtvirtualkeyboard
breeze
filelight
dolphin-plugins
];
};
System = {
Expand All @@ -272,6 +278,7 @@ in (tools.fullModule rec {
elisa
konsole
discover
okular
];
};
})
File renamed without changes.