summaryrefslogtreecommitdiff
path: root/archetypes/collections/filesystems.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-06-15 15:18:29 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-06-15 15:18:29 -0500
commit73bdaa872445403fa6b66124550864f092648f86 (patch)
tree727100839d49a7c2e6d45deeefcc6a0fea7ef415 /archetypes/collections/filesystems.nix
parent0e23412a2883d3403f301fb718f3bc20350a343c (diff)
downloadnixos-73bdaa872445403fa6b66124550864f092648f86.tar.xz
nixos-73bdaa872445403fa6b66124550864f092648f86.zip
move filesystems programs to collections
Diffstat (limited to 'archetypes/collections/filesystems.nix')
-rw-r--r--archetypes/collections/filesystems.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/archetypes/collections/filesystems.nix b/archetypes/collections/filesystems.nix
new file mode 100644
index 0000000..00ab409
--- /dev/null
+++ b/archetypes/collections/filesystems.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }: {
+ environment.systemPackages = with pkgs; [
+ cryptsetup
+ exfat
+ ntfs3g
+ ];
+}