From a909d27908010276f4547062128340648d85a909 Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Fri, 29 Dec 2023 07:38:51 -0500 Subject: [PATCH] fix configuration --- configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 1a7e9d4..719c1e4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,17 +8,16 @@ ./common ./common/sites/gifford ./common/server + ./services.nix ]; - boot.loader = { grub = { # Use the GRUB 2 boot loader. enable = true; - version = 2; # efiSupport = true; # efiInstallAsRemovable = false; # Define on which hard drive you want to install Grub. - device = "/dev/disk/by-uuid/caab3f5b-b264-4070-8a98-fb267ed31280"; # or "nodev" for efi only + device = "/dev/sda"; # or "nodev" for efi only }; # efi.efiSysMountPoint = "/boot/efi"; # (part of the generated default) }; @@ -46,6 +45,8 @@ services.xserver.layout = "us"; + fileSystems."/srv".options = [ "nofail" ]; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave