Files
nix/modules/hosts/box/box.nix
2026-03-03 17:05:04 -06:00

45 lines
670 B
Nix

{ den, ... }: {
den.aspects.box = {
includes = with den.aspects; [
den.default
den.provides.home-manager
dns
openssh
cloudflared
syncthing
catppuccin
fish
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";
};
};
};
}