summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-03 17:46:43 -0600
committerTim Keller <tjkeller.xyz>2024-11-03 17:46:43 -0600
commit643d50d24069af5efef1ffff2c5edb0947d43031 (patch)
tree7085d83bda38822302b643dc6943ba0ad9c74fb2 /modules
parent9f017946d069221945d2b41c3bfef5aeaa15d786 (diff)
downloadnixos-643d50d24069af5efef1ffff2c5edb0947d43031.tar.xz
nixos-643d50d24069af5efef1ffff2c5edb0947d43031.zip
add t495 hardware configuration
Diffstat (limited to 'modules')
-rw-r--r--modules/hosts/T495/configuration.nix5
-rw-r--r--modules/hosts/T495/hardware-configuration.nix53
-rw-r--r--modules/root/grub.nix2
3 files changed, 57 insertions, 3 deletions
diff --git a/modules/hosts/T495/configuration.nix b/modules/hosts/T495/configuration.nix
index a8ccff1..3468622 100644
--- a/modules/hosts/T495/configuration.nix
+++ b/modules/hosts/T495/configuration.nix
@@ -3,11 +3,12 @@
./hardware-configuration.nix
./wg.nix
];
- system.stateVersion = "24.05";
-
networking.hostName = "T495";
+ config.grub.mode = "efi";
environment.systemPackages = with pkgs; [
input-leap
];
+
+ system.stateVersion = "24.05";
}
diff --git a/modules/hosts/T495/hardware-configuration.nix b/modules/hosts/T495/hardware-configuration.nix
new file mode 100644
index 0000000..87bcb79
--- /dev/null
+++ b/modules/hosts/T495/hardware-configuration.nix
@@ -0,0 +1,53 @@
+# 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" "ehci_pci" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
+ boot.initrd.kernelModules = [ ];
+ boot.kernelModules = [ "kvm-amd" ];
+ boot.extraModulePackages = [ ];
+
+ fileSystems."/" =
+ { device = "/dev/disk/by-uuid/ddf3cd9c-13a0-43d6-b278-dbb97cd9f9ee";
+ fsType = "btrfs";
+ options = [ "subvol=@" ];
+ };
+
+ fileSystems."/boot" =
+ { device = "/dev/disk/by-uuid/ddf3cd9c-13a0-43d6-b278-dbb97cd9f9ee";
+ fsType = "btrfs";
+ options = [ "subvol=@boot" ];
+ };
+
+ fileSystems."/home" =
+ { device = "/dev/disk/by-uuid/ddf3cd9c-13a0-43d6-b278-dbb97cd9f9ee";
+ fsType = "btrfs";
+ options = [ "subvol=@home" ];
+ };
+
+ fileSystems."/boot/efi" =
+ { device = "/dev/disk/by-uuid/9441-53B1";
+ fsType = "vfat";
+ options = [ "fmask=0022" "dmask=0022" ];
+ };
+
+ 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.<interface>.useDHCP`.
+ networking.useDHCP = lib.mkDefault true;
+ # networking.interfaces.enp3s0f0.useDHCP = lib.mkDefault true;
+ # networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
+ # networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
+
+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
+}
diff --git a/modules/root/grub.nix b/modules/root/grub.nix
index 47227d1..4e6a5f5 100644
--- a/modules/root/grub.nix
+++ b/modules/root/grub.nix
@@ -1,6 +1,6 @@
{ lib, config, ... }: {
options = {
- grub.enable = lib.mkEnableOption "enables docker";
+ grub.enable = lib.mkEnableOption "enables grub bootloader";
grub.mode = lib.mkOption {
type = lib.types.enum [ "efi" "bios" ];
default = "efi";