NixOS-Configs/hosts/w1/default.nix
2026-06-18 12:18:08 -05:00

25 lines
588 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
../templates/server.nix
./hardware-configuration.nix
../../modules/headscale.nix
# ../../modules/netbird.nix
# ./podman.nix
];
networking.hostName = "w1";
variables.address = "100.72.16.240";
# boot = {
# initrd = {
# availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];
# kernelModules = ["nvme"];
# };
# loader = {
# grub = {
# enable = true;
# device = "/dev/sda";
# efiSupport = false;
# };
# };
# };
}