Separate filesystems config into own file

This commit is contained in:
Jimbo 2024-09-24 23:57:59 -04:00
parent deac8e4bc1
commit 6aad24d535
5 changed files with 8 additions and 12 deletions

View file

@ -27,6 +27,7 @@
./hardware/machines/desktop.nix ./hardware/machines/desktop.nix
./hardware/systemdboot.nix ./hardware/systemdboot.nix
./hardware/opengl.nix ./hardware/opengl.nix
./hardware/filesystems.nix
./hardware/nvidia.nix ./hardware/nvidia.nix
#./hardware/nouveau.nix #./hardware/nouveau.nix

View file

@ -0,0 +1,6 @@
{lib, ...}: {
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}

View file

@ -49,12 +49,6 @@ in {
"kvm-amd" "kvm-amd"
]; ];
}; };
# Manage supported filesystems
supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}; };
# Additional entry to boot from the second GPU # Additional entry to boot from the second GPU

View file

@ -24,12 +24,6 @@
"kvm-amd" "kvm-amd"
]; ];
}; };
# Manage supported filesystems
supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}; };
# Mount everything as necessary # Mount everything as necessary

View file

@ -30,6 +30,7 @@
./hardware/machines/pinebook.nix ./hardware/machines/pinebook.nix
./hardware/extlinux.nix ./hardware/extlinux.nix
./hardware/opengl.nix ./hardware/opengl.nix
./hardware/filesystems.nix
# Services # Services
./services/openssh.nix ./services/openssh.nix