summaryrefslogtreecommitdiff
path: root/system-profiles/bcachefs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles/bcachefs.nix')
-rw-r--r--system-profiles/bcachefs.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/system-profiles/bcachefs.nix b/system-profiles/bcachefs.nix
new file mode 100644
index 00000000..65de9f7e
--- /dev/null
+++ b/system-profiles/bcachefs.nix
@@ -0,0 +1,7 @@
1{ config, pkgs, ... } : {
2 config = {
3 boot.supportedFilesystems = [ "bcachefs" ];
4
5 environment.systemPackages = with pkgs; [ bcachefs-tools ];
6 };
7}