aboutsummaryrefslogtreecommitdiffstats
path: root/home/root/kaitain.nix
blob: cb4ed488c2714f4a3c4649be85eb780f59677d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs, lib, pkgs, config, outputs, ... }:
{
  imports = [
    common/core
  ];

  home.file = {
    "bin/knock".source = ../common/scripts/knock;
  };

  nix.extraOptions = ''
    !include /run/secrets/nix-access-token-github
  '';
}