diff --git a/README.md b/README.md index dc95f992..9e7cb91c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ nix develop -c /etc/nixos/git/docs/setup.sh ![Gruv'd Hyprland](./docs/screenshot.png "Hyprland with a Gruvboxy theme") --- # To Do List -* [ ] When Forgejo v1.21 is out, set up scheduled builds (!!!) * [ ] Make a dashboard for all Nixified devices (online status) * [ ] Try deploy-rs - [Link](https://github.com/serokell/deploy-rs) * [ ] Set up actions/forgejo-release - [Link](https://code.forgejo.org/actions/forgejo-release) diff --git a/home-manager/common/software/cli/default.nix b/home-manager/common/software/cli/default.nix index 931acfa7..b4c17e32 100644 --- a/home-manager/common/software/cli/default.nix +++ b/home-manager/common/software/cli/default.nix @@ -6,6 +6,7 @@ ./neofetch.nix ./neovim.nix ./ranger.nix + ./ssh.nix ./themes/${theme}/btop.nix ]; diff --git a/home-manager/common/software/cli/ssh.nix b/home-manager/common/software/cli/ssh.nix new file mode 100644 index 00000000..1fa9ecb7 --- /dev/null +++ b/home-manager/common/software/cli/ssh.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: { + # Disable strict host key checking for 192.168.1.210 + # The key will change between boot and live for LUKS unlocking + home.file.".ssh/config".text = '' + Host 192.168.1.210 + StrictHostKeyChecking no + ''; +}; \ No newline at end of file