summaryrefslogtreecommitdiff
path: root/common.nix
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-01-10 17:56:14 +0100
committerChristoph Cullmann <cullmann@kde.org>2024-01-10 17:56:14 +0100
commite710f64489f80060be56a8b2b17066fe2c3b936a (patch)
treedc6e87d3acb2e72ca08754f81c0cf7b97a3b1a75 /common.nix
parent32b21b65b047345bfb14b589ff7b9c57f16eba79 (diff)
enable bcachefs
Diffstat (limited to 'common.nix')
-rw-r--r--common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/common.nix b/common.nix
index d425adf..7d14ded 100644
--- a/common.nix
+++ b/common.nix
@@ -25,8 +25,9 @@ in
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
- # use the latest kernel
+ # use the latest kernel with bcachefs
boot.kernelPackages = pkgs.linuxPackages_latest;
+ boot.supportedFilesystems = [ "bcachefs" ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;