add dolphin
This commit is contained in:
parent
8910559700
commit
f360b98731
5 changed files with 398 additions and 12 deletions
16
modules/features/home/dolphin.nix
Normal file
16
modules/features/home/dolphin.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue