aboutsummaryrefslogtreecommitdiff
path: root/hosts/carmel/hardware-configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/carmel/hardware-configuration.nix')
-rw-r--r--hosts/carmel/hardware-configuration.nix54
1 files changed, 26 insertions, 28 deletions
diff --git a/hosts/carmel/hardware-configuration.nix b/hosts/carmel/hardware-configuration.nix
index 17aba16..e342c9a 100644
--- a/hosts/carmel/hardware-configuration.nix
+++ b/hosts/carmel/hardware-configuration.nix
@@ -4,45 +4,43 @@
{ config, lib, pkgs, modulesPath, ... }:
{
- imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
- ];
+ imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
+ boot.initrd.availableKernelModules =
+ [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
- fsType = "btrfs";
- options = [ "subvol=nixos" ];
- };
+ fileSystems."/" = {
+ device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
+ fsType = "btrfs";
+ options = [ "subvol=nixos" ];
+ };
- boot.initrd.luks.devices."system".device = "/dev/disk/by-uuid/dd1b3673-ece0-49f8-bf71-8cc4e1a06634";
+ boot.initrd.luks.devices."system".device =
+ "/dev/disk/by-uuid/dd1b3673-ece0-49f8-bf71-8cc4e1a06634";
- fileSystems."/home" =
- { device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
- fsType = "btrfs";
- options = [ "subvol=home" ];
- };
+ fileSystems."/home" = {
+ device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
+ fsType = "btrfs";
+ options = [ "subvol=home" ];
+ };
- fileSystems."/.snapshots" =
- { device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
- fsType = "btrfs";
- options = [ "subvol=snapshots" ];
- };
+ fileSystems."/.snapshots" = {
+ device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
+ fsType = "btrfs";
+ options = [ "subvol=snapshots" ];
+ };
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/7430-1C58";
- fsType = "vfat";
- };
+ fileSystems."/boot" = {
+ device = "/dev/disk/by-uuid/7430-1C58";
+ fsType = "vfat";
+ };
swapDevices =
- [ { device = "/dev/disk/by-uuid/ebcb04f3-4227-4ec3-af52-bd775ef38027"; }
- ];
+ [{ device = "/dev/disk/by-uuid/ebcb04f3-4227-4ec3-af52-bd775ef38027"; }];
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
+ my.hardware.amd = true;
# high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true;
}