diff options
Diffstat (limited to 'linux-common.nix')
| -rw-r--r-- | linux-common.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux-common.nix b/linux-common.nix index 101d7eb..27e4464 100644 --- a/linux-common.nix +++ b/linux-common.nix @@ -3,7 +3,8 @@ pkgs, inputs, ... -}: { +}: +{ imports = [ ./sh.nix ]; @@ -11,7 +12,7 @@ # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.supportedFilesystems = ["exfat"]; + boot.supportedFilesystems = [ "exfat" ]; # Use latest kernel. boot.kernelPackages = pkgs.linuxPackages_latest; |
