bcachefs: drop zfs hack

This commit is contained in:
Jörg Thalheim 2024-03-04 15:43:23 +01:00 committed by Jörg Thalheim
parent c54e7e2b2b
commit 0c9b003a48
2 changed files with 3 additions and 11 deletions

View File

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1708815994,
"narHash": "sha256-hL7N/ut2Xu0NaDxDMsw2HagAjgDskToGiyZOWriiLYM=",
"lastModified": 1709386671,
"narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "9a9dae8f6319600fa9aebde37f340975cab4b8c0",
"rev": "fa9a51752f1b5de583ad5213eb621be071806663",
"type": "github"
},
"original": {

View File

@ -12,13 +12,5 @@ diskoLib.testLib.makeDiskoTest {
# so that the installer boots with a bcachefs enabled kernel
extraInstallerConfig = {
boot.supportedFilesystems = [ "bcachefs" ];
# disable zfs so we can support latest kernel
nixpkgs.overlays = [
(_final: super: {
zfs = super.zfs.overrideAttrs (_: {
meta.platforms = [ ];
});
})
];
};
}