mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
9 lines
212 B
Nix
9 lines
212 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.supportedFilesystems.zfs = false;
|
|
environment.etc."nixos-generate-config.conf".text = ''
|
|
[Defaults]
|
|
Kernel=latest
|
|
'';
|
|
}
|