all: refactor hardware modules
This commit is contained in:
parent
20e322b44a
commit
0259c77d3a
9 changed files with 17 additions and 5 deletions
|
@ -18,7 +18,6 @@
|
|||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd.supportedFilesystems = [ "vfat" "btrfs" ];
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-partlabel/RICO0_ROOT";
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd.supportedFilesystems = [ "vfat" "btrfs" ];
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-partlabel/RICO1_ROOT";
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd.supportedFilesystems = [ "vfat" "btrfs" ];
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-partlabel/RICO2_ROOT";
|
||||
|
|
|
@ -11,7 +11,7 @@ _: {
|
|||
};
|
||||
};
|
||||
};
|
||||
supportedFilesystems = [ "vfat" "ntfs" "exfat" "ext4" "btrfs" ];
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" "exfat" "ntfs" ];
|
||||
resumeDevice = "/dev/vg0/swap";
|
||||
};
|
||||
fileSystems = {
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
||||
};
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd.supportedFilesystems = [ "vfat" "btrfs" ];
|
||||
supportedFilesystems = [ "vfat" "btrfs" "ext4" "exfat" ];
|
||||
};
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-partlabel/WYNNE_ROOT";
|
||||
|
|
Loading…
Reference in a new issue