Initial commit

This commit is contained in:
Craige McWhirter 2020-03-30 12:02:34 +10:00
parent 456fcbea6a
commit 3e8287bdc4
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

16
roles/desktop-feeds.nix Normal file
View file

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