dotfiles/hosts/watermelon/hardware-configuration.nix

45 lines
1.6 KiB
Nix
Raw Normal View History

2023-04-26 01:16:53 +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.
2024-02-07 01:43:09 +00:00
{ config, lib, pkgs, modulesPath, ... }:
2024-02-07 01:43:09 +00:00
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
2023-04-26 01:16:53 +00:00
2024-02-07 01:43:09 +00:00
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ata_piix" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2023-04-26 01:16:53 +00:00
2024-04-15 14:25:47 +00:00
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
2024-02-07 01:43:09 +00:00
fileSystems."/" =
{ device = "/dev/disk/by-uuid/82b7f887-2059-45ae-9bdd-60082718d922";
fsType = "ext4";
};
2023-04-26 01:16:53 +00:00
2024-02-07 01:43:09 +00:00
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/C630-E94C";
fsType = "vfat";
};
2023-04-26 01:16:53 +00:00
2024-02-07 01:43:09 +00:00
swapDevices =
[ { device = "/dev/disk/by-uuid/3ce61b0c-691d-4452-93f2-e64e4b926f30"; }
];
2023-04-26 01:16:53 +00:00
# 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;
2024-02-07 01:43:09 +00:00
# networking.interfaces.enp0s25.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
2023-04-26 01:16:53 +00:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}