mio-ops/roles/desktop-feeds.nix
Craige McWhirter 3e8287bdc4
Initial commit
2020-03-30 12:02:34 +10:00

17 lines
391 B
Nix

# 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
];
};
}