Skip to content

Commit

Permalink
installer: enable bcachefs support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored and mergify[bot] committed Aug 16, 2024
1 parent 46004f0 commit 8e24c42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nix/installer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
# We are stateless, so just default to latest.
system.stateVersion = config.system.nixos.version;

# Enable bcachefs support
boot.supportedFilesystems.bcachefs = lib.mkDefault true;

# use latest kernel we can support to get more hardware support
boot.zfs.package = pkgs.zfsUnstable;
boot.kernelPackages = lib.mkDefault pkgs.zfsUnstable.latestCompatibleLinuxPackages;
boot.kernelPackages = pkgs.zfsUnstable.latestCompatibleLinuxPackages;

documentation.enable = false;
documentation.man.man-db.enable = false;
Expand Down

0 comments on commit 8e24c42

Please sign in to comment.