mio-ops/profiles/desktop-feeds.nix

18 lines
451 B
Nix
Raw Normal View History

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
2021-11-16 04:57:23 +00:00
gnome_mplayer # Gnome MPlayer, a simple GUI for MPlayer
gpodder # A podcatcher written in python
2020-03-30 02:02:34 +00:00
];
};
}