From e11c4f401370ac5a8fd55902e0f5954af0b5fbeb Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Sat, 5 Aug 2017 09:18:11 +0200 Subject: [PATCH] clean up aplysia --- aplysia.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/aplysia.nix b/aplysia.nix index 0d807b4..6c55a83 100644 --- a/aplysia.nix +++ b/aplysia.nix @@ -6,16 +6,10 @@ ./common-headless.nix ]; - # Use the GRUB 2 boot loader. boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.zfsSupport = true; boot.supportedFilesystems = ["zfs"]; - # boot.loader.grub.efiSupport = true; - # boot.loader.grub.efiInstallAsRemovable = true; - # boot.loader.efi.efiSysMountPoint = "/boot/efi"; - # Define on which hard drive you want to install Grub. - # boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only boot.loader.grub.mirroredBoots = [ { devices = [ "/dev/sda" ]; path = "/boota"; } { devices = [ "/dev/sdb" ]; path = "/bootb"; } @@ -34,10 +28,9 @@ isNormalUser = true; extraGroups = ["wheel"]; }; - + boot.kernelPackages = pkgs.lib.mkOverride 10 pkgs.linuxPackages; - # The NixOS release to be compatible with for stateful data such as databases. system.stateVersion = "17.03"; }