~ruther/nix-tmpactivator

ref: 8fa85e7ab5259c2807913f9aa888fed4d2aa92a5 nix-tmpactivator/modules/default.nix -rw-r--r-- 322 bytes
8fa85e7a — Rutherther feat: add nix registry management from nixos modules 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, config, pkgs, ... }:

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

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