mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-08-05 13:56:32 +05:30
13 lines
242 B
Nix
13 lines
242 B
Nix
{
|
|
flake.modules.nixos.boot =
|
|
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
kernelPackages = pkgs.linuxPackages_zen;
|
|
supportedFilesystems = [ "ntfs" ];
|
|
};
|
|
};
|
|
}
|