17 lines
215 B
Nix
17 lines
215 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.my.makeHomePackageConfig {
|
|
inherit config pkgs;
|
|
packageName = "shotwell";
|
|
packagePath = [ "shotwell" ];
|
|
optionPath = [
|
|
"desktop"
|
|
"media"
|
|
"shotwell"
|
|
];
|
|
}
|