diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-31 11:50:24 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-31 11:50:24 +0300 |
commit | 7db7922cd352436fe0475c5334c88a1e9a864469 (patch) | |
tree | 68730821b0410b5a11d069e75f84679fe1a6c3cd /nixos/hardware-configuration.nix | |
parent | ab9b2485518ccb9abd7fcb0dd5524f29543e87b9 (diff) | |
download | nixos-configuration-7db7922cd352436fe0475c5334c88a1e9a864469.tar.gz nixos-configuration-7db7922cd352436fe0475c5334c88a1e9a864469.tar.bz2 nixos-configuration-7db7922cd352436fe0475c5334c88a1e9a864469.zip |
feat: add tailscale support and update timeZone
Diffstat (limited to 'nixos/hardware-configuration.nix')
-rw-r--r-- | nixos/hardware-configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/hardware-configuration.nix b/nixos/hardware-configuration.nix index 81b97e4..29eca17 100644 --- a/nixos/hardware-configuration.nix +++ b/nixos/hardware-configuration.nix @@ -12,7 +12,7 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod"]; + boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usbhid"]; boot.initrd.kernelModules = []; boot.kernelModules = ["kvm-amd"]; boot.extraModulePackages = []; @@ -28,6 +28,11 @@ options = ["fmask=0022" "dmask=0022"]; }; + fileSystems."/games" = { + device = "/dev/disk/by-uuid/492b4058-0507-456d-b694-a340222d35af"; + fsType = "ext4"; + }; + swapDevices = []; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking |