summaryrefslogtreecommitdiffstats
path: root/linux-common.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-05-23 20:42:55 -0400
committerSkullheadx <admonty1@protonmail.com>2026-05-23 20:42:55 -0400
commit37f3f10ec822ff153faccedb37fc2a0eafcd2a53 (patch)
treea85995631bf19e04d787b857375bece484b20793 /linux-common.nix
parentadd hardware config for server (diff)
downloadnixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.tar.gz
nixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.tar.bz2
nixos-37f3f10ec822ff153faccedb37fc2a0eafcd2a53.zip
add back nvim
Diffstat (limited to '')
-rw-r--r--linux-common.nix5
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;