[z790prors] Support evil partition and OS

This commit is contained in:
2024-12-22 12:49:49 -08:00
parent 421b27f76f
commit cd6e028142
2 changed files with 19 additions and 2 deletions

View File

@@ -29,9 +29,14 @@
}; };
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true; #boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.useOSProber = true; boot.loader.efi.efiSysMountPoint = "/boot";
boot.loader.grub = {
enable = true;
useOSProber = true;
devices = [ "nodev" ];
};
networking = { networking = {
hostName = "z790prors-nix"; # Define your hostname. hostName = "z790prors-nix"; # Define your hostname.

View File

@@ -58,6 +58,18 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/steam" =
{ device = "/dev/disk/by-uuid/E494DA9A94DA6E94";
fsType = "ntfs";
options = [
"nofail"
"rw"
"user"
"exec" # This needs to go after "user". See https://askubuntu.com/questions/30243/why-does-ubuntu-refuse-to-execute-files-from-an-ntfs-partition
"umask=000"
];
};
swapDevices = [ ]; swapDevices = [ ];
services.beesd.filesystems = { services.beesd.filesystems = {