blob: 3a7b0a0a765ad1e03261e81906a76a07c9045d58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# vim: ts=2
{
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-graphical-gnome.nix")
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
boot = {
kernelModules = ["rtw89"];
kernelPackages = pkgs.linuxPackages_latest;
zfs.enableUnstable = true; # Default zfs is "broken" (to nixos) on the newest kernel
};
}
|