add dolphin.nix
This commit is contained in:
parent
f64e2d8fb1
commit
8910559700
6 changed files with 22 additions and 2 deletions
15
options/home/programs/dolphin.nix
Normal file
15
options/home/programs/dolphin.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
options.programs = {
|
||||
dolphin = {
|
||||
enable = lib.mkEnableOption "dolphin";
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.kdePackages.dolphin;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue