From 77783e2ac37826417689a9016ec5c8af6921a6cd Mon Sep 17 00:00:00 2001 From: buffet Date: Sun, 21 Jan 2024 14:21:17 +0100 Subject: [PATCH] new hardware configuration --- hosts/alice/hardware-configuration.nix | 58 +++++++++----------------- 1 file changed, 20 insertions(+), 38 deletions(-) diff --git a/hosts/alice/hardware-configuration.nix b/hosts/alice/hardware-configuration.nix index 2ee3580..eb5bac8 100644 --- a/hosts/alice/hardware-configuration.nix +++ b/hosts/alice/hardware-configuration.nix @@ -1,48 +1,31 @@ # 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, - pkgs, - modulesPath, - ... -}: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"]; - boot.initrd.kernelModules = []; - boot.kernelModules = []; - boot.extraModulePackages = []; + boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; - fileSystems."/" = { - device = "/dev/disk/by-uuid/ad5a4aba-eb04-45e7-874e-375e7a9e4ea0"; - fsType = "btrfs"; - options = ["subvol=@"]; - }; + fileSystems."/" = + { device = "UUID=288cfd6e-dd6d-4ac4-bc2f-36c1309f8619"; + fsType = "bcachefs"; + }; - fileSystems."/home" = { - device = "/dev/disk/by-uuid/ad5a4aba-eb04-45e7-874e-375e7a9e4ea0"; - fsType = "btrfs"; - options = ["subvol=@persist"]; - }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/6029-DD49"; + fsType = "vfat"; + }; - fileSystems."/nix" = { - device = "/dev/disk/by-uuid/ad5a4aba-eb04-45e7-874e-375e7a9e4ea0"; - fsType = "btrfs"; - options = ["subvol=@nix"]; - }; - - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/46F6-8161"; - fsType = "vfat"; - }; - - swapDevices = [ - {device = "/dev/disk/by-uuid/2df05abc-60cb-4269-86ae-7c16a4a05369";} - ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/62a6b7a0-413a-46e8-bf6f-aba4eedf06a9"; } + ]; # 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 @@ -53,6 +36,5 @@ # networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }