Attempting to fix boot and mounts
This commit is contained in:
parent
618c072249
commit
79cab8d373
|
@ -95,11 +95,11 @@
|
|||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1690055134,
|
||||
"narHash": "sha256-pca36VkwUxcygKtrY8OPWp9MpxHgWauwBWxO8lgHQTU=",
|
||||
"lastModified": 1690073260,
|
||||
"narHash": "sha256-3Yu5ah4iLe0npG/k9obg97pwm13W/5LBnktvmqEPsqM=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "15a8d4645c280e35c00a36303bb76eb697d38206",
|
||||
"rev": "6be732b18451ea43ead4ea4f5b499ae909102351",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -10,7 +10,7 @@ in {
|
|||
loader = {
|
||||
grub = {
|
||||
enable = true;
|
||||
device = "/dev/sdc"; # "nodev";
|
||||
devices = ["nodev"];
|
||||
useOSProber = true;
|
||||
# efiSupport = true;
|
||||
# theme = inputs.grub-theme + "/src/catppuccin-mocha-grub-theme";
|
||||
|
@ -18,7 +18,8 @@ in {
|
|||
/*
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
#efiInstallAsRemovable = true;
|
||||
efiSysMountPoint = "/boot/";
|
||||
};
|
||||
*/
|
||||
};
|
||||
|
|
|
@ -12,14 +12,23 @@
|
|||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
boot.supportedFilesystems = ["ntfs"];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/fdea0ef2-fa72-11ed-8a6f-e39e300c6f30";
|
||||
# device = "/dev/disk/by-label/NIXROOT"
|
||||
fsType = "ext4";
|
||||
};
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/fdea0ef2-fa72-11ed-8a6f-e39e300c6f30";
|
||||
# device = "/dev/disk/by-label/NIXROOT"
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/run/media/nibunta/OMTRON" = {
|
||||
device = "/dev/disk/by-label/OMTRON";
|
||||
fsType = "ntfs";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/76B5-DF1B";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
|
Loading…
Reference in a new issue