From 62c8b61ed5982035b4b1ceb2d6d3178f43a0b4ad Mon Sep 17 00:00:00 2001 From: Frederik Jacobsen Date: Sun, 11 May 2025 17:14:08 +0200 Subject: [PATCH] Fixed some issues --- configuration.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/configuration.nix b/configuration.nix index 0dd7c4d..8b8d53f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,14 +10,6 @@ ./ssh-configuration.nix ]; - # Bootloader. - boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/sda"; - boot.loader.grub.useOSProber = true; - - networking.hostName = "nixos"; # Define your hostname. - # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; @@ -78,8 +70,6 @@ virtualisation.docker = { enable = true; enableOnBoot = true; - } - - system.stateVersion = "24.11"; # Did you read the comment? + }; }