Compare commits

...

4 commits

Author SHA1 Message Date
a672771858 update todo 2023-08-19 02:55:52 -07:00
8cfd5f80af update mosh/ssh 2023-08-18 18:06:38 -07:00
bd197cf445 fix mosh 2023-08-18 17:26:42 -07:00
e3d5388a1b add mosh support 2023-08-18 17:25:09 -07:00
2 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, luaOlder, buildLuarocksPackage, lua, fetchgit, ... }:
{ config, lib, pkgs, ... }:
{
imports =
@ -50,12 +50,17 @@
];
};
# Programs
# Programs - Mosh
programs.mosh.enable = true;
# Services
# Services - Openssh
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = true;
};
};

View file

@ -4,6 +4,7 @@ Nix Flake dotfiles used on my server.
## Todo
* Use [home-manager](https://github.com/nix-community/home-manager)
* Fix high memory usage on gitea, this may be something with using Argon2? [source](https://discourse.gitea.io/t/how-to-reduce-memory-usage/2947/3)
* Make it so our secrets consist upon reboot (currently just our wifi password, have to set every reboot) (maybe with [Agenix](https://github.com/ryantm/agenix) + [Age](https://github.com/FiloSottile/age)?
* Make everything __modular__.