about summary refs log tree commit diff
path: root/modules/workstation/lorri/default.nix
blob: 70d0c1e313fd3bb352a229ff1fecddd104c2c2e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, ... }:

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

  services.lorri.enable = true;

  # FIXME: systemd should have this set globally.
  systemd.user.services.lorri.environment.XDG_CACHE_HOME =
    "${config.users.users.qyliss.home}/state/cache";
}