16 lines
270 B
Nix
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";
|
|
|
|
}
|