~ruther/nix-tmpactivator

ref: 51790c2bb1a15d51848d3f433d80ccf01b0fbde7 nix-tmpactivator/modules/default.nix -rw-r--r-- 322 bytes
51790c2b — Rutherther feat: add pathsToLink option to not link everything 1 year, 4 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; };
  };
}