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

31 lines
456 B
Nix

{ lib, ... }:
{
imports = [
./hardware.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "raindog";
motd = {
networkInterfaces = lib.lists.singleton "eno1";
servicesToCheck = [
"searx"
];
};
users = {
users.share = {
uid = 994;
isSystemUser = true;
group = "share";
};
groups.share = {
gid = 994;
};
};
}