add dolphin

This commit is contained in:
Asaki Yuki 2026-04-14 10:28:32 +07:00
parent 8910559700
commit f360b98731
5 changed files with 398 additions and 12 deletions

View file

@ -0,0 +1,16 @@
{
lib,
config,
...
}: {
home = {
packages = [
(lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package)
];
file.".config/dolphinrc" = {
text = "";
force = true;
};
};
}