diff --git a/dotfiles/systems/fighter/boot.nix b/dotfiles/systems/fighter/boot.nix new file mode 100644 index 00000000..0fe3ae4b --- /dev/null +++ b/dotfiles/systems/fighter/boot.nix @@ -0,0 +1,15 @@ +{ ... }: { + fileSystems = { + "/" = { + device = "/dev/disk/by-uuid/placeholder"; + fsType = "ext4"; + }; + + "/boot" = { + device = "/dev/disk/by-uuid/placeholder"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + }; + boot.loader.systemd-boot.enable = true; +} \ No newline at end of file