made system boot faster,

changed shxkd config
changed starship config
This commit is contained in:
ISnortPennies 2023-01-25 21:32:29 -05:00
parent 0a10e29581
commit 48179c0221
7 changed files with 25 additions and 13 deletions

View file

@ -41,18 +41,21 @@
boot = {
initrd = {
kernelModules = ["amdgpu"];
availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "uas" "sd_mod"];
availableKernelModules = ["nvme" "ext4" "vfat" "xhci_pci" "ahci" "usbhid" "sd_mod"];
includeDefaultModules = false;
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/e5c9634f-0273-4fd3-b35f-49899984340f";
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part2";
fsType = "ext4";
label = "nixos";
};
"/boot" = {
device = "/dev/disk/by-uuid/D3B9-197E";
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part1";
fsType = "vfat";
label = "BOOT";
};
};
}