summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2023-03-03 16:16:31 +0300
committerIzorkin <izorkin@elven.pw>2023-03-03 23:32:48 +0300
commit3e3367aa6a18cf4ec4c79c21f36eec150b3d7939 (patch)
tree464b41515aad12311611f40a231d1caf081406c8 /nixos/modules/profiles
parent0367cc8b5a7d4e6e62ca7c9f429f8a1901194297 (diff)
nixos/profiles/base: remove duplicate and optimize fsPackages
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/base.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix
index 4ac1727655cb..9f32f85a61ec 100644
--- a/nixos/modules/profiles/base.nix
+++ b/nixos/modules/profiles/base.nix
@@ -43,22 +43,14 @@
pkgs.usbutils
pkgs.nvme-cli
- # Tools to create / manipulate filesystems.
- pkgs.ntfsprogs # for resizing NTFS partitions
- pkgs.dosfstools
- pkgs.mtools
- pkgs.xfsprogs.bin
- pkgs.jfsutils
- pkgs.f2fs-tools
-
# Some compression/archiver tools.
pkgs.unzip
pkgs.zip
];
- # Include support for various filesystems.
+ # Include support for various filesystems and tools to create / manipulate them.
boot.supportedFilesystems =
- [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ] ++
+ [ "btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs" ] ++
lib.optional (lib.meta.availableOn pkgs.stdenv.hostPlatform config.boot.zfs.package) "zfs";
# Configure host id for ZFS to work