This commit is contained in:
iFargle 2023-12-01 11:13:39 +09:00
parent 356c92f40d
commit 321b390c31
3 changed files with 9 additions and 1 deletions

View file

@ -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)

View file

@ -6,6 +6,7 @@
./neofetch.nix
./neovim.nix
./ranger.nix
./ssh.nix
./themes/${theme}/btop.nix
];

View file

@ -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
'';
};