switch from fluentreader to rssguard
This commit is contained in:
parent
a0acda3d2b
commit
aa86b5cdb7
3 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||||
|
|
|
@ -11,6 +11,6 @@
|
||||||
./mangal
|
./mangal
|
||||||
./obs
|
./obs
|
||||||
./nextcloud
|
./nextcloud
|
||||||
./fluentreader
|
./rssguard
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue