mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Remove carriage return
This commit is contained in:
parent
2048d35c56
commit
19cdd9421f
1 changed files with 35 additions and 35 deletions
|
@ -1,35 +1,35 @@
|
||||||
{ systemConfiguration, enabled, ... }:
|
{ systemConfiguration, enabled, ... }:
|
||||||
|
|
||||||
systemConfiguration {
|
systemConfiguration {
|
||||||
powerManagement.cpuFreqGovernor = "performance";
|
powerManagement.cpuFreqGovernor = "performance";
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [
|
||||||
"ahci"
|
"ahci"
|
||||||
"rtsx_pci_sdmmc"
|
"rtsx_pci_sdmmc"
|
||||||
"sd_mod"
|
"sd_mod"
|
||||||
"sr_mod"
|
"sr_mod"
|
||||||
"usb_storage"
|
"usb_storage"
|
||||||
"xhci_pci"
|
"xhci_pci"
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot = enabled {};
|
systemd-boot = enabled {};
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/disk/by-uuid/add562e1-f2f6-4ac0-bb17-0acc380ac133";
|
device = "/dev/disk/by-uuid/add562e1-f2f6-4ac0-bb17-0acc380ac133";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-uuid/D697-1FA1";
|
device = "/dev/disk/by-uuid/D697-1FA1";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices = [
|
||||||
{
|
{
|
||||||
device = "/dev/disk/by-uuid/7b21b5e9-6194-4448-9f65-3a744bfdc2b3";
|
device = "/dev/disk/by-uuid/7b21b5e9-6194-4448-9f65-3a744bfdc2b3";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue