diff --git a/nixos/machines/nixos-laptop-mans/configuration.nix b/nixos/machines/nixos-laptop-mans/configuration.nix index 091b943..8bcc587 100644 --- a/nixos/machines/nixos-laptop-mans/configuration.nix +++ b/nixos/machines/nixos-laptop-mans/configuration.nix @@ -154,5 +154,5 @@ }; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion - system.stateVersion = "23.05"; + system.stateVersion = "22.11"; # Did you read the comment? } diff --git a/nixos/machines/nixos-laptop-mans/hardware-configuration.nix b/nixos/machines/nixos-laptop-mans/hardware-configuration.nix index 5bde617..c102a6c 100644 --- a/nixos/machines/nixos-laptop-mans/hardware-configuration.nix +++ b/nixos/machines/nixos-laptop-mans/hardware-configuration.nix @@ -8,20 +8,20 @@ [ (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" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/a0ce5ff7-5e7c-4ef3-ae98-a91f04969a36"; + { device = "/dev/disk/by-uuid/db297c82-b312-418e-a676-8184d1f05e8d"; fsType = "ext4"; }; - boot.initrd.luks.devices."luks-2a137f62-de59-4560-afc6-129f13ee6c16".device = "/dev/disk/by-uuid/2a137f62-de59-4560-afc6-129f13ee6c16"; + boot.initrd.luks.devices."luks-0af9e769-eebd-452a-bf39-96fbc998e6d5".device = "/dev/disk/by-uuid/0af9e769-eebd-452a-bf39-96fbc998e6d5"; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/61EC-610B"; + fileSystems."/boot/efi" = + { device = "/dev/disk/by-uuid/4172-0C69"; fsType = "vfat"; }; @@ -32,7 +32,8 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + # networking.interfaces.enp3s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;