From 5443a410166d41f216b34b9d51da1026cda60dea Mon Sep 17 00:00:00 2001 From: Sojus07 Date: Sun, 23 Feb 2025 14:35:21 +0100 Subject: [PATCH] kekl --- hosts/meteor/hardware-configuration.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/hosts/meteor/hardware-configuration.nix b/hosts/meteor/hardware-configuration.nix index a09abe0..b677076 100644 --- a/hosts/meteor/hardware-configuration.nix +++ b/hosts/meteor/hardware-configuration.nix @@ -23,16 +23,15 @@ fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; - + + fileSystems."/media/STUFF" = + { device = "/dev/disk/by-label/STUFF"; + fsType = "ext4"; + }; + 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..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;