2022-10-16 21:55:37 +00: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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2022-10-21 11:19:17 +00:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2022-10-16 21:55:37 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "usb_storage" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2022-10-21 11:19:17 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/ebb6bf2e-2d7f-4fa6-88cb-751fdd174ef9";
|
2022-10-16 21:55:37 +00:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2022-10-21 11:19:17 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/19BC-1BE8";
|
2022-10-16 21:55:37 +00:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-21 12:16:06 +00:00
|
|
|
|
swapDevices = [
|
|
|
|
|
{ device = "/swap"; size = 16 * 1024; }
|
|
|
|
|
];
|
2022-10-16 21:55:37 +00:00
|
|
|
|
|
|
|
|
|
# nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
}
|