Test
This commit is contained in:
parent
356c92f40d
commit
321b390c31
3 changed files with 9 additions and 1 deletions
|
@ -18,7 +18,6 @@ nix develop -c /etc/nixos/git/docs/setup.sh
|
||||||
![Gruv'd Hyprland](./docs/screenshot.png "Hyprland with a Gruvboxy theme")
|
![Gruv'd Hyprland](./docs/screenshot.png "Hyprland with a Gruvboxy theme")
|
||||||
---
|
---
|
||||||
# To Do List
|
# To Do List
|
||||||
* [ ] When Forgejo v1.21 is out, set up scheduled builds (!!!)
|
|
||||||
* [ ] Make a dashboard for all Nixified devices (online status)
|
* [ ] Make a dashboard for all Nixified devices (online status)
|
||||||
* [ ] Try deploy-rs - [Link](https://github.com/serokell/deploy-rs)
|
* [ ] Try deploy-rs - [Link](https://github.com/serokell/deploy-rs)
|
||||||
* [ ] Set up actions/forgejo-release - [Link](https://code.forgejo.org/actions/forgejo-release)
|
* [ ] Set up actions/forgejo-release - [Link](https://code.forgejo.org/actions/forgejo-release)
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
./neofetch.nix
|
./neofetch.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./ranger.nix
|
./ranger.nix
|
||||||
|
./ssh.nix
|
||||||
|
|
||||||
./themes/${theme}/btop.nix
|
./themes/${theme}/btop.nix
|
||||||
];
|
];
|
||||||
|
|
8
home-manager/common/software/cli/ssh.nix
Normal file
8
home-manager/common/software/cli/ssh.nix
Normal 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
|
||||||
|
'';
|
||||||
|
};
|
Loading…
Reference in a new issue