nix-config/hosts/servers/hive/default.nix

24 lines
345 B
Nix
Raw Normal View History

2024-11-10 17:54:08 -05:00
{ lib, ... }:
{
imports = [
./hardware.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "hive";
2024-11-10 17:54:08 -05:00
motd = {
networkInterfaces = lib.lists.singleton "eno1";
servicesToCheck = [
"caddy"
"gotosocial"
"mealie"
"murmur"
];
};
}