summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-06-13 12:01:57 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2021-06-13 12:01:57 +0200
commit4f68db21acf6a4c0d5274dac8441414f090128d5 (patch)
tree809cfc9f4cc77cecf6218b675ecc02b7b8cbf7a5
parent9bbe612dd70a88954a7100dfb048f1cbe1c81049 (diff)
downloadnixos-4f68db21acf6a4c0d5274dac8441414f090128d5.tar
nixos-4f68db21acf6a4c0d5274dac8441414f090128d5.tar.gz
nixos-4f68db21acf6a4c0d5274dac8441414f090128d5.tar.bz2
nixos-4f68db21acf6a4c0d5274dac8441414f090128d5.tar.xz
nixos-4f68db21acf6a4c0d5274dac8441414f090128d5.zip
installer: latest kernel
-rw-r--r--installer.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/installer.nix b/installer.nix
index 3fbb83c4..78106902 100644
--- a/installer.nix
+++ b/installer.nix
@@ -1,9 +1,14 @@
1{ flake, ... }: { 1{ flake, pkgs, ... }: {
2 imports = with flake.nixosModules.systemProfiles; [ 2 imports = with flake.nixosModules.systemProfiles; [
3 default-locale 3 default-locale
4 ]; 4 ];
5 5
6 config = { 6 config = {
7 boot = {
8 kernelPackages = pkgs.linuxPackages_latest;
9 zfs.enableUnstable = true;
10 };
11
7 networking.wireless.enable = false; 12 networking.wireless.enable = false;
8 13
9 networking.firewall = { 14 networking.firewall = {