task | Add support for ace

This commit is contained in:
Don Harper 2024-10-28 07:30:55 -05:00
parent 2e7c713bf0
commit 7d4e82d2ef
2 changed files with 365 additions and 5 deletions

View file

@ -23,18 +23,18 @@
boot.extraModulePackages = [];
fileSystems."/" = {
device = "/dev/mmcblk0p2";
device = "/dev/sda2";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/mmcblk0p1";
device = "/dev/sda1";
fsType = "vfat";
};
# swapDevices =
# [ { device = "/dev/disk/by-uuid/8c445831-23e0-4508-85d0-54ea8cd3f80b"; }
# ];
swapDevices = [
{device = "/dev/sda3";}
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
@ -43,5 +43,7 @@
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}