[nidaros] Update hardware.nix

This commit is contained in:
2025-10-14 17:45:03 +02:00
parent 61676ed77c
commit ac2b847118
2 changed files with 3 additions and 7 deletions

View File

@@ -3,7 +3,6 @@
{ {
imports = with lib.custom; [ imports = with lib.custom; [
(relativeToBase "modules") (relativeToBase "modules")
./configuration.nix
./hardware.nix ./hardware.nix
]; ];

View File

@@ -17,7 +17,6 @@
"xhci_pci" "xhci_pci"
"ahci" "ahci"
"nvme" "nvme"
"usb_storage"
"usbhid" "usbhid"
"sd_mod" "sd_mod"
]; ];
@@ -26,12 +25,12 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/cc66d953-c0b5-449d-8790-1dd113661da3"; device = "/dev/disk/by-uuid/27a8c7df-442b-423e-9e0a-5ed9571a81ed";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/E198-D3D4"; device = "/dev/disk/by-uuid/63B5-A86A";
fsType = "vfat"; fsType = "vfat";
options = [ options = [
"fmask=0077" "fmask=0077"
@@ -39,9 +38,7 @@
]; ];
}; };
swapDevices = [ swapDevices = [ ];
{ device = "/dev/disk/by-uuid/9631df4c-632f-49ec-8c97-bb66012fa26a"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # 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 # (the default) this is the recommended approach. When using systemd-networkd it's