switch from fluentreader to rssguard

This commit is contained in:
Sakooooo 2023-08-31 17:33:18 +04:00
parent a0acda3d2b
commit aa86b5cdb7
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 5 additions and 5 deletions

View file

@ -30,7 +30,7 @@
nemo.enable = true; nemo.enable = true;
pass.enable = true; pass.enable = true;
keepassxc.enable = true; keepassxc.enable = true;
fluentreader.enable = true; rssguard.enable = true;
nicotineplus.enable = true; nicotineplus.enable = true;
transmission.enable = true; transmission.enable = true;
calibre.enable = true; calibre.enable = true;

View file

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

View file

@ -1,16 +1,16 @@
{ outputs, options, config, lib, pkgs, ...}: { outputs, options, config, lib, pkgs, ...}:
with lib; with lib;
let let
cfg = config.modules.desktop.apps.fluentreader; cfg = config.modules.desktop.apps.rssguard;
in in
{ {
options.modules.desktop.apps.fluentreader = { options.modules.desktop.apps.rssguard = {
enable = mkEnableOption false; enable = mkEnableOption false;
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [ users.users.sako.packages = with pkgs; [
fluent-reader rssguard
]; ];
}; };
} }