feat: shotwell -> loupe

This commit is contained in:
2026-01-23 21:16:35 +08:00
parent ce8d76886a
commit 754caf00d4
5 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.desktop.media.loupe;
in
{
options.my.desktop.media.loupe = {
enable = lib.mkEnableOption "loupe";
};
config = lib.mkIf cfg.enable {
my.hm.home.packages = [ pkgs.loupe ];
};
}