add fluentreader
This commit is contained in:
parent
c25618a058
commit
851343958d
2 changed files with 17 additions and 0 deletions
|
@ -11,5 +11,6 @@
|
||||||
./mangal
|
./mangal
|
||||||
./obs
|
./obs
|
||||||
./nextcloud
|
./nextcloud
|
||||||
|
./fluentreader
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/apps/fluentreader/default.nix
Normal file
16
modules/desktop/apps/fluentreader/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue