36 lines
567 B
Nix
36 lines
567 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|