about summary refs log tree commit diff
path: root/modules/workstation/windowing/gnome-podcasts/default.nix
blob: dc291273b6d203ff3001295b3980d66b21a6d486 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [ gnome-podcasts ];

  systemd.tmpfiles.rules = [
    "d ${config.users.users.qyliss.home}/state/gnome-podcasts 0700 qyliss qyliss"
  ];
}