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

17 lines
312 B
Nix
Raw Normal View History

2023-08-31 08:35:58 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.apps.fluentreader;
in
{
options.modules.desktop.apps.fluentreader = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
fluent-reader
];
};
}