diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-06-02 20:42:23 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-06-02 20:42:23 -0700 |
commit | 7482e4098518c20050062eb70836f3753d60520c (patch) | |
tree | e2c1a2d4ed8390b1e9d7645631e14dbdc04f3d03 /home/root/caladan.nix | |
parent | 1b96f473780541fe4f801e38f7d6e3c70f5700b7 (diff) | |
download | nix-7482e4098518c20050062eb70836f3753d60520c.tar nix-7482e4098518c20050062eb70836f3753d60520c.tar.gz nix-7482e4098518c20050062eb70836f3753d60520c.tar.bz2 nix-7482e4098518c20050062eb70836f3753d60520c.tar.lz nix-7482e4098518c20050062eb70836f3753d60520c.tar.xz nix-7482e4098518c20050062eb70836f3753d60520c.tar.zst nix-7482e4098518c20050062eb70836f3753d60520c.zip |
Add new host caladan
Diffstat (limited to '')
-rw-r--r-- | home/root/caladan.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/root/caladan.nix b/home/root/caladan.nix new file mode 100644 index 0000000..287f220 --- /dev/null +++ b/home/root/caladan.nix @@ -0,0 +1,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 + #''; +} |