summaryrefslogtreecommitdiff
path: root/system-profiles/bcachefs.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2024-07-30 13:14:06 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2024-07-30 13:14:06 +0200
commitbbf8345289c36539c299c6d633a85d16285489d3 (patch)
treeefb23c7de97197a1bf29b7ed0e2f64e6ac6e6d4d /system-profiles/bcachefs.nix
parent2f8b062363b293a72e4afa0e682f1c4371317515 (diff)
downloadnixos-bbf8345289c36539c299c6d633a85d16285489d3.tar
nixos-bbf8345289c36539c299c6d633a85d16285489d3.tar.gz
nixos-bbf8345289c36539c299c6d633a85d16285489d3.tar.bz2
nixos-bbf8345289c36539c299c6d633a85d16285489d3.tar.xz
nixos-bbf8345289c36539c299c6d633a85d16285489d3.zip
...
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}