diff --git a/boxes/desktop/hardware-configuration.nix b/boxes/desktop/hardware-configuration.nix index 7df64a1..13943b6 100644 --- a/boxes/desktop/hardware-configuration.nix +++ b/boxes/desktop/hardware-configuration.nix @@ -1,34 +1,46 @@ # 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, ... }: +{ + config, + lib, + modulesPath, + ... +}: { - imports = - [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ + "xhci_pci" + "ahci" + "nvme" + "usbhid" + "usb_storage" + "sd_mod" + ]; boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { - device = "/dev/disk/by-uuid/789aab6a-3f46-4023-9aab-0569bb06bcde"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/1eacfeb6-2ef5-41eb-8b34-4e5743a8bf5d"; + fsType = "btrfs"; + }; + boot.initrd.luks.devices."nvme1n1p2_crypt".device = + "/dev/disk/by-uuid/f6af1dbf-87be-4a96-a477-bf5f94466b68"; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/8A9E-507E"; + fsType = "vfat"; + options = [ + "fmask=0077" + "dmask=0077" + ]; + }; - fileSystems."/boot" = - { - device = "/dev/disk/by-uuid/FA5C-26B6"; - fsType = "vfat"; - options = [ "fmask=0077" "dmask=0077" ]; - }; - - swapDevices = - [{ device = "/dev/disk/by-uuid/8d59260c-90c4-440e-8ac6-f0135e90451f"; }]; + 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