diff --git a/roles/desktop-feeds.nix b/roles/desktop-feeds.nix new file mode 100644 index 0000000..7c3dddd --- /dev/null +++ b/roles/desktop-feeds.nix @@ -0,0 +1,16 @@ +# NixOps configuration for the hosts using feed applications + +{ config, pkgs, lib, ... }: + +{ + + # 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 + gpodder # A podcatcher written in python + ]; + }; + +}