mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: new drives added to violet!!!
This commit is contained in:
parent
3f45fc330a
commit
64ca98ce68
1 changed files with 13 additions and 4 deletions
|
|
@ -13,11 +13,20 @@
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/8d603f3d-0d75-4cae-b68f-ab8e218f5b2c";
|
device = "/dev/disk/by-uuid/8d603f3d-0d75-4cae-b68f-ab8e218f5b2c";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/mnt/array" = {
|
||||||
|
device = "/dev/disk/by-uuid/c503088f-95aa-4bb0-85eb-d1de1e0158d0";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [
|
||||||
|
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue