~ruther/nix-tmpactivator

ref: 34acef2dbfa2894377a981ebbe211a89455c5c1d nix-tmpactivator/modules/default.nix -rw-r--r-- 303 bytes
34acef2d — Rutherther feat: add multiple instances of tmpfiles 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, config, pkgs, ... }:

{
  imports = [
    ./tmpfiles.nix
    ./home.nix
    ./systemd.nix
    ./desktop-items.nix
  ];

  _module.args = {
    utils = import "${pkgs.path}/nixos/lib/utils.nix" { inherit lib config pkgs; };
    tmpLib = import ../lib { inherit pkgs; inherit (pkgs) lib; };
  };
}