Files
infra/machines/b4l/configuration.nix
2025-07-11 13:46:33 +07:00

14 lines
204 B
Nix

{
imports = [
];
nixpkgs.hostPlatform = {
system = "x86_64-linux";
};
boot.loader.grub.devices = [ "/dev/disk/by-id/changeme" ];
fileSystems = {
"/".device = "/dev/changeme";
};
}