Files
athens/hosts/aristotle/hardware-configuration.nix
T

28 lines
662 B
Nix
Raw Normal View History

2021-04-26 20:28:47 -04:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
2022-12-27 10:10:53 -05:00
{ lib, modulesPath, ... }:
2021-04-26 20:28:47 -04:00
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2026-07-27 17:15:39 -04:00
fileSystems."/boot/firmware" = {
device = "/dev/disk/by-label/FIRMWARE";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
2021-04-26 20:28:47 -04:00
fileSystems."/" = {
2021-05-19 21:15:38 -04:00
device = "/dev/disk/by-label/NIXOS_SD";
2021-04-26 20:28:47 -04:00
fsType = "ext4";
2024-02-17 13:25:00 -05:00
options = [ "noatime" ];
2021-04-26 20:28:47 -04:00
};
swapDevices = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}