~ruther/nix-tmpactivator

ref: 26244cda67cbcd5ca03c786a64823274f653fe58 nix-tmpactivator/default.nix -rw-r--r-- 470 bytes
26244cda — Rutherther feat: allow strings in home.packages 1 year, 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> {} }:

let
  inherit (pkgs) lib;
  tmpLib = import ./lib { inherit pkgs; inherit (pkgs) lib; };
in pkgs.lib.evalModules {
  specialArgs = {
    inherit tmpLib pkgs;
    utils = import "${pkgs.path}/nixos/lib/utils.nix" { inherit lib pkgs; config = { systemd = { package = "systemd"; globalEnvironment = {}; }; }; };
  };
  modules = [
    ./modules/tmp-files.nix
    ./modules/home.nix
    ./modules/systemd.nix
    ./modules/config.nix
  ];
}
Do not follow this link