~ruther/nix-tmpactivator

ref: f4f924ac84d7f2d5608d53ffdc68cde86b577ff5 nix-tmpactivator/modules/default.nix -rw-r--r-- 279 bytes
f4f924ac — Rutherther docs: add README 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, config, pkgs, ... }:

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

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