fix ext4 support
This commit is contained in:
parent
fcebbac471
commit
770a010bb7
1 changed files with 7 additions and 1 deletions
|
@ -29,7 +29,12 @@
|
||||||
programs.nano.enable = false;
|
programs.nano.enable = false;
|
||||||
|
|
||||||
# prevents strace
|
# prevents strace
|
||||||
environment.defaultPackages = lib.mkForce [ pkgs.rsync pkgs.parted pkgs.gptfdisk ];
|
environment.defaultPackages = lib.mkForce [
|
||||||
|
pkgs.rsync
|
||||||
|
pkgs.parted
|
||||||
|
pkgs.gptfdisk
|
||||||
|
pkgs.e2fsprogs
|
||||||
|
];
|
||||||
|
|
||||||
# normal users are not allowed with sys-users
|
# normal users are not allowed with sys-users
|
||||||
# see https://github.com/NixOS/nixpkgs/pull/328926
|
# see https://github.com/NixOS/nixpkgs/pull/328926
|
||||||
|
@ -46,6 +51,7 @@
|
||||||
|
|
||||||
# we are missing this from base.nix
|
# we are missing this from base.nix
|
||||||
boot.supportedFilesystems = [
|
boot.supportedFilesystems = [
|
||||||
|
"ext4"
|
||||||
"btrfs"
|
"btrfs"
|
||||||
# probably not needed but does not seem to increase closure size
|
# probably not needed but does not seem to increase closure size
|
||||||
"cifs"
|
"cifs"
|
||||||
|
|
Loading…
Reference in a new issue