mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
moved neovim to flake, small filesystem config changes
This commit is contained in:
parent
aea8d79274
commit
6143e3ff50
9 changed files with 16 additions and 227 deletions
|
|
@ -41,7 +41,8 @@
|
|||
boot = {
|
||||
initrd = {
|
||||
kernelModules = ["amdgpu"];
|
||||
availableKernelModules = ["nvme" "ext4" "vfat" "xhci_pci" "ahci" "usbhid" "sd_mod"];
|
||||
availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "sd_mod"];
|
||||
supportedFilesystems = ["ext4" "vfat"];
|
||||
includeDefaultModules = false;
|
||||
};
|
||||
};
|
||||
|
|
@ -51,11 +52,17 @@
|
|||
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part2";
|
||||
fsType = "ext4";
|
||||
label = "nixos";
|
||||
noCheck = false;
|
||||
mountPoint = "/";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part1";
|
||||
fsType = "vfat";
|
||||
label = "BOOT";
|
||||
noCheck = false;
|
||||
mountPoint = "/boot";
|
||||
neededForBoot = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue