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

{
  environment.systemPackages = with pkgs; [ dino ];

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