aboutsummaryrefslogtreecommitdiffstats
path: root/home/root/ginaz.nix
blob: 8370818d4f95daf6caeb4da2b5f4932412387f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ inputs, lib, pkgs, config, outputs, ... }:
{

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

  imports = [
    common/core
  ];

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