add fluentreader

This commit is contained in:
Sakooooo 2023-08-31 08:35:58 +04:00
parent c25618a058
commit 851343958d
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 17 additions and 0 deletions

View file

@ -11,5 +11,6 @@
./mangal
./obs
./nextcloud
./fluentreader
];
}

View file

@ -0,0 +1,16 @@
{ 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
];
};
}