2020-03-30 02:02:34 +00:00
|
|
|
# NixOps configuration for the hosts using feed applications
|
|
|
|
{
|
2022-03-07 14:26:15 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2020-03-30 02:02:34 +00:00
|
|
|
# Set the system-wide environment
|
|
|
|
environment = {
|
|
|
|
systemPackages = with pkgs; [
|
|
|
|
#feedreader # desktop RSS reader, compatible with Tiny Tiny RSS
|
|
|
|
#vocal # The podcast client for the modern free desktop
|
2022-05-17 09:31:11 +00:00
|
|
|
mpv # General-purpose media player
|
2021-11-16 04:57:23 +00:00
|
|
|
gpodder # A podcatcher written in python
|
2020-03-30 02:02:34 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|