This commit is contained in:
4DBug
2026-03-03 17:25:37 -06:00
parent c10eca565f
commit aeea92d752
12 changed files with 104 additions and 168 deletions

35
modules/hosts/box.nix Normal file
View File

@@ -0,0 +1,35 @@
{ den, ... }: {
den.aspects.box = {
includes = with den.aspects; [
den.default
cloudflared
portmap
searxng
copyparty
glances
# invidious
mailserver
# matrix
redlib
# sish
vscode-server
gitea
];
nixos = {
networking.hostName = "box";
# den.tunnels = [ "tvtun" ];
users.users.levi = {
isNormalUser = true;
description = "levi";
extraGroups = [];
hashedPasswordFile = "/home/bug/users/levi.passwd";
};
};
};
}