From 21fde799cc5272b65e6889eec4cd676fe1aad9bf Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Tue, 2 Jul 2024 17:25:50 +0200 Subject: [PATCH] new laptop hardware --- nixos/configs/default.nix | 2 +- nixos/configs/nova-hardware.nix | 41 +++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 nixos/configs/nova-hardware.nix diff --git a/nixos/configs/default.nix b/nixos/configs/default.nix index a17f3fd..2ab41e1 100644 --- a/nixos/configs/default.nix +++ b/nixos/configs/default.nix @@ -10,7 +10,7 @@ in packages = config.packages; }; modules = [ - ./laptop-hardware.nix + ./nova-hardware.nix inputs.hosts.nixosModule inputs.catppuccin.nixosModules.catppuccin ] ++ (with toplevel.config.flake.nixosModules; [ wireguard catppuccin boot security xdg networking users services programs env rest ]); diff --git a/nixos/configs/nova-hardware.nix b/nixos/configs/nova-hardware.nix new file mode 100644 index 0000000..a8c30c6 --- /dev/null +++ b/nixos/configs/nova-hardware.nix @@ -0,0 +1,41 @@ +# 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, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/47536cbe-7265-493b-a2e3-bbd376a6f9af"; + fsType = "btrfs"; + }; + + boot.initrd.luks.devices."nixos".device = "/dev/disk/by-uuid/712dd8ba-d5b4-438a-9a77-663b8c935cfe"; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/4C3C-993A"; + fsType = "vfat"; + }; + + 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 + # 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.enp0s20f0u6.useDHCP = lib.mkDefault true; + # networking.interfaces.enp47s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp45s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}