add dolphin.nix

This commit is contained in:
Asaki Yuki 2026-04-14 10:06:04 +07:00
parent f64e2d8fb1
commit 8910559700
6 changed files with 22 additions and 2 deletions

View file

@ -4,6 +4,10 @@
inputs,
...
}: {
imports = [
./programs/dolphin.nix
];
options.programs = {
catppuccin = {
enable = lib.mkEnableOption "catppuccin";

View 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;
};
};
};
}

View file

@ -82,7 +82,6 @@
type = lib.types.listOf lib.types.package;
default = with pkgs.kdePackages; [
kservice
dolphin
kate
qt5compat
qtdeclarative