diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-05-23 20:42:55 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-05-23 20:42:55 -0400 |
| commit | 37f3f10ec822ff153faccedb37fc2a0eafcd2a53 (patch) | |
| tree | a85995631bf19e04d787b857375bece484b20793 /linux-common.nix | |
| parent | add hardware config for server (diff) | |
| download | nixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.tar.gz nixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.tar.bz2 nixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.zip | |
add back nvim
Diffstat (limited to '')
| -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; |
