Files
nix/modules/hosts/box/box.nix
2026-02-22 22:25:44 -06:00

38 lines
598 B
Nix

{ den, ... }: {
den.aspects.box = {
includes = with den.aspects; [
den.default
den.provides.home-manager
syncthing
fish
cloudflared
searxng
copyparty
glances
# invidious
mailserver
#matrix
redlib
#sish
vscode-server
dns
openssh
gitea
];
nixos = {
networking.hostName = "box";
users.users.levi = {
isNormalUser = true;
description = "levi";
extraGroups = [];
hashedPasswordFile = "/home/bug/users/levi.passwd";
};
};
};
}