aboutsummaryrefslogtreecommitdiffstats
path: root/home/root/caladan.nix
blob: 287f220208c7b35b73f6d9327ab3e7b8d1ecd8b4 (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
  #'';
}