Separate filesystems config into own file
This commit is contained in:
parent
deac8e4bc1
commit
6aad24d535
|
@ -27,6 +27,7 @@
|
|||
./hardware/machines/desktop.nix
|
||||
./hardware/systemdboot.nix
|
||||
./hardware/opengl.nix
|
||||
./hardware/filesystems.nix
|
||||
./hardware/nvidia.nix
|
||||
#./hardware/nouveau.nix
|
||||
|
||||
|
|
6
system/hardware/filesystems.nix
Normal file
6
system/hardware/filesystems.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{lib, ...}: {
|
||||
boot.supportedFilesystems = {
|
||||
ntfs = true;
|
||||
zfs = lib.mkForce false;
|
||||
};
|
||||
}
|
|
@ -49,12 +49,6 @@ in {
|
|||
"kvm-amd"
|
||||
];
|
||||
};
|
||||
|
||||
# Manage supported filesystems
|
||||
supportedFilesystems = {
|
||||
ntfs = true;
|
||||
zfs = lib.mkForce false;
|
||||
};
|
||||
};
|
||||
|
||||
# Additional entry to boot from the second GPU
|
||||
|
|
|
@ -24,12 +24,6 @@
|
|||
"kvm-amd"
|
||||
];
|
||||
};
|
||||
|
||||
# Manage supported filesystems
|
||||
supportedFilesystems = {
|
||||
ntfs = true;
|
||||
zfs = lib.mkForce false;
|
||||
};
|
||||
};
|
||||
|
||||
# Mount everything as necessary
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
./hardware/machines/pinebook.nix
|
||||
./hardware/extlinux.nix
|
||||
./hardware/opengl.nix
|
||||
./hardware/filesystems.nix
|
||||
|
||||
# Services
|
||||
./services/openssh.nix
|
||||
|
|
Loading…
Reference in a new issue