Skip to content

Commit

Permalink
Upgrade everything
Browse files Browse the repository at this point in the history
No reason.
  • Loading branch information
PsychoLlama committed Jan 23, 2025
1 parent 86592fb commit f60da20
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
24 changes: 12 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion platforms/nixos/modules/psychollama/presets/services/zfs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ in
boot = {
initrd.supportedFilesystems = [ "zfs" ];
supportedFilesystems = [ "zfs" ];
kernelPackages = pkgs.linuxPackages_6_6; # Latest compatible with ZFS.

# Use stable kernel. This is the default, but I'd rather be explicit.
# Using non-LTS kernels may corrupt the drive since ZFS has spotty
# support for newer kernels.
kernelPackages = pkgs.linuxPackages;

# ZFS doesn't support freeze/thaw APIs. Hibernation could corrupt files.
# https://github.com/openzfs/zfs/issues/260
Expand Down

0 comments on commit f60da20

Please sign in to comment.