mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
10 lines
186 B
Nix
10 lines
186 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Use the latest kernel
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
# Enable support for additional filesystems
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
|
}
|