From 88395bdce5a46e090787c79e55aca28289000114 Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Tue, 16 Jul 2024 22:21:26 -0300 Subject: [PATCH] Provision adrial --- flake.nix | 6 +++--- nixos/configuration.nix | 4 ++++ nixos/hardware/adrial.nix | 42 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 nixos/hardware/adrial.nix diff --git a/flake.nix b/flake.nix index db71c63..4cb7184 100644 --- a/flake.nix +++ b/flake.nix @@ -113,11 +113,11 @@ ./nixos/work.nix ]; }; - #Thinkpad E15 Gen 3 Laptop (ThinkPad) - Type 20YG - Model 20YG003EUS - ariel = nixpkgs.lib.nixosSystem { + #Lenovo T15 + adrial = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs outputs; - hostname = "ariel"; + hostname = "adrial"; }; modules = [ ./nixos/configuration.nix diff --git a/nixos/configuration.nix b/nixos/configuration.nix index eec1e8c..7862e80 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -57,6 +57,10 @@ # To make nix3 commands consistent with your flake nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs); + services.udev.packages = [ + pkgs.android-udev-rules + ]; + # This will additionally add your inputs to the system's legacy channels # Making legacy nix commands consistent as well, awesome! nix.nixPath = ["/etc/nix/path"]; diff --git a/nixos/hardware/adrial.nix b/nixos/hardware/adrial.nix new file mode 100644 index 0000000..d93ce44 --- /dev/null +++ b/nixos/hardware/adrial.nix @@ -0,0 +1,42 @@ +# 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 = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/115f9271-46e1-4a41-accb-1645a9e82a0e"; + fsType = "btrfs"; + options = [ "subvol=@" ]; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/8A22-C3C6"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/18d77521-9857-4be8-a7da-f10288cfa3b0"; } + ]; + + # 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.enp1s0.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; +}