nixos/modules/desktop/apps/rssguard/default.nix

16 lines
298 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.apps.rssguard;
in
{
options.modules.desktop.apps.rssguard = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
rssguard
];
};
}