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