diff options
-rw-r--r-- | modules/hosts/T495/configuration.nix | 5 | ||||
-rw-r--r-- | modules/hosts/T495/hardware-configuration.nix | 53 | ||||
-rw-r--r-- | modules/root/grub.nix | 2 |
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"; |