diff options
| author | Fuwn <[email protected]> | 2024-10-25 00:54:51 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-25 00:54:51 -0700 |
| commit | 1054fa1ba2d44c58ea4b66bc0cb787506570feb2 (patch) | |
| tree | 277809e2c232d3dd2c4bfc821e9757a358e58ff4 /home | |
| parent | kansai: add samba credentials for kioku (diff) | |
| download | nixos-config-1054fa1ba2d44c58ea4b66bc0cb787506570feb2.tar.xz nixos-config-1054fa1ba2d44c58ea4b66bc0cb787506570feb2.zip | |
home: add kioku ssh target
Diffstat (limited to 'home')
| -rw-r--r-- | home/ebisu/kansai/multimedia/audio/cider.nix | 2 | ||||
| -rw-r--r-- | home/ebisu/kansai/system/sops.nix | 1 | ||||
| -rw-r--r-- | home/ebisu/kansai/system/ssh.nix | 5 |
3 files changed, 7 insertions, 1 deletions
diff --git a/home/ebisu/kansai/multimedia/audio/cider.nix b/home/ebisu/kansai/multimedia/audio/cider.nix index 4ecbdc6..cf879e5 100644 --- a/home/ebisu/kansai/multimedia/audio/cider.nix +++ b/home/ebisu/kansai/multimedia/audio/cider.nix @@ -9,7 +9,7 @@ ]; programs.cider = { - enable = true; + enable = false; path = "${self}/secrets/Cider-linux-appimage-x64.AppImage"; }; } diff --git a/home/ebisu/kansai/system/sops.nix b/home/ebisu/kansai/system/sops.nix index e229626..24d3059 100644 --- a/home/ebisu/kansai/system/sops.nix +++ b/home/ebisu/kansai/system/sops.nix @@ -17,6 +17,7 @@ "proxy/i2p/http" = { }; "proxy/i2p/https" = { }; "proxy/i2p/socks5" = { }; + kioku_openssh_private_key = { }; }; }; } diff --git a/home/ebisu/kansai/system/ssh.nix b/home/ebisu/kansai/system/ssh.nix index 6a47791..6941040 100644 --- a/home/ebisu/kansai/system/ssh.nix +++ b/home/ebisu/kansai/system/ssh.nix @@ -17,6 +17,11 @@ "himeji".user = "root"; "watson".user = "root"; + "kioku" = { + user = "root"; + identityFile = config.sops.secrets.kioku_openssh_private_key.path; + }; + "github.com" = { user = "git"; identityFile = "${config.home.homeDirectory}/.ssh/id_rsa"; |