diff --git a/machines/b4l/configuration.nix b/machines/b4l/configuration.nix new file mode 100644 index 0000000..91ee447 --- /dev/null +++ b/machines/b4l/configuration.nix @@ -0,0 +1,13 @@ +{ + imports = [ + + ]; + nixpkgs.hostPlatform = { + system = "x86_64-linux"; + }; + boot.loader.grub.devices = [ "/dev/disk/by-id/changeme" ]; + fileSystems = { + "/".device = "/dev/changeme"; + }; + +}