summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = {