Files
infra/machines/b4l/configuration.nix
2025-07-14 11:56:00 +07:00

16 lines
270 B
Nix

{
imports = [
];
nixpkgs.hostPlatform = {
system = "x86_64-linux";
};
boot.loader.grub.devices = [ "/dev/disk/by-id/changeme" ];
fileSystems = {
"/".device = "/dev/changeme";
};
networking.fqdn = "b4l.co.th";
system.stateVersion = "25.11";
}