Compare commits
4 commits
1ffbe33e4a
...
a672771858
Author | SHA1 | Date | |
---|---|---|---|
a672771858 | |||
8cfd5f80af | |||
bd197cf445 | |||
e3d5388a1b |
2 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, luaOlder, buildLuarocksPackage, lua, fetchgit, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
|
@ -50,12 +50,17 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Programs
|
||||||
|
# Programs - Mosh
|
||||||
|
programs.mosh.enable = true;
|
||||||
|
|
||||||
# Services
|
# Services
|
||||||
# Services - Openssh
|
# Services - Openssh
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
PermitRootLogin = "no";
|
PermitRootLogin = "no";
|
||||||
|
PasswordAuthentication = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ Nix Flake dotfiles used on my server.
|
||||||
|
|
||||||
## Todo
|
## 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)
|
* 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 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__.
|
* Make everything __modular__.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue