From 015506c0a930c855e8a98633c574640d6e9e0595 Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Sat, 14 Sep 2024 13:57:45 +0000 Subject: [PATCH] Added ingrid thinkpad t470 --- flake.nix | 2 +- nixos/hardware/selaphiel.nix | 41 ++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 nixos/hardware/selaphiel.nix diff --git a/flake.nix b/flake.nix index 2257d53..2149042 100644 --- a/flake.nix +++ b/flake.nix @@ -144,7 +144,7 @@ #Ingrid thinkpad t480 specialArgs = { inherit inputs outputs; - hostname = "Selaphiel"; + hostname = "selaphiel"; mainUser = "ingrid"; }; modules = [ diff --git a/nixos/hardware/selaphiel.nix b/nixos/hardware/selaphiel.nix new file mode 100644 index 0000000..a0baad7 --- /dev/null +++ b/nixos/hardware/selaphiel.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" "nvme" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/1c4d73a3-ce64-42c8-beda-b27e085a80c1"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/B16C-FE36"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/24533029-c0f8-44d7-b3f5-12a5e5327ed1"; } + ]; + + # 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.enp0s31f6.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}