1
0
Fork 0

nice comments

This commit is contained in:
Pratham Patel 2024-01-21 12:07:51 +05:30
parent 65d85ca259
commit 0abab637d1
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 4 additions and 2 deletions

View File

@ -6,9 +6,11 @@
];
boot = {
# use the latest Linux kernel
kernelPackages = pkgs.linuxPackages_latest;
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
# since the latest kernel package is installed, there will be a ZFS conflict because
# 1. ZFS is developed out of tree and needs to catch up to the latest release
# 2. NixOS has ZFS enabled as a default
# so force a list of filesystems which I use; sans-ZFS
supportedFilesystems = lib.mkForce [
"ext4"
"f2fs"