27 lines
392 B
Nix
27 lines
392 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware.nix
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "hive";
|
||
|
networkmanager.enable = true;
|
||
|
};
|
||
|
|
||
|
motd = {
|
||
|
networkInterfaces = lib.lists.singleton "eno1";
|
||
|
servicesToCheck = [
|
||
|
"caddy"
|
||
|
"gotosocial"
|
||
|
"mealie"
|
||
|
"murmur"
|
||
|
];
|
||
|
};
|
||
|
}
|