Created
June 2, 2023 08:04
-
-
Save cenunix/2a770fc53e570def3f9657f7f8a3b5b1 to your computer and use it in GitHub Desktop.
X13s nixos hardware-configuration.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = | |
[ (modulesPath + "/installer/scan/not-detected.nix") | |
]; | |
boot.initrd.availableKernelModules = [ "nvme" "usb_storage" ]; | |
boot.initrd.kernelModules = [ ]; | |
boot.kernelModules = [ ]; | |
boot.extraModulePackages = [ ]; | |
fileSystems."/" = | |
{ device = "/dev/disk/by-uuid/dcb0566f-2308-4ec0-b119-026fa56619b5"; | |
fsType = "ext4"; | |
}; | |
fileSystems."/boot/efi" = | |
{ device = "/dev/disk/by-uuid/9756-8F6D"; | |
fsType = "vfat"; | |
}; | |
swapDevices = [ ]; | |
# 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 | |
# still possible to use this option, but it's recommended to use it in conjunction | |
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. | |
networking.useDHCP = lib.mkDefault true; | |
# networking.interfaces.wlP6p1s0.useDHCP = lib.mkDefault true; | |
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; | |
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment