blob: 228bb90e443cd15a7193823b764c6fcc9229efa3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | { config, inputs, lib, outputs, pkgs, ... }:
{
  imports = [
    common/core
  ];
  home.file = {
    "bin/knock".source = ../common/scripts/knock;
  };
  nix.extraOptions = ''
    !include /run/secrets/nix-access-token-github
  '';
}
 |