From 7874f6484833b5ff9d53b36cd25089721fc16794 Mon Sep 17 00:00:00 2001 From: Adrian Gunnar Lauterer Date: Wed, 6 Dec 2023 21:40:48 +0100 Subject: [PATCH] removed install specific from galadriel --- machines/galadriel/configuration.nix | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/machines/galadriel/configuration.nix b/machines/galadriel/configuration.nix index b941a4a..c752da3 100644 --- a/machines/galadriel/configuration.nix +++ b/machines/galadriel/configuration.nix @@ -7,15 +7,9 @@ { imports = [ # Include the results of the hardware scan. - ./hardware-configuration.nix ./vim.nix ]; - # Bootloader. - boot.loader.grub.enable = true; - boot.loader.grub.device = "/dev/sda"; - boot.loader.grub.useOSProber = true; - networking.hostName = "galadriel"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. @@ -59,6 +53,8 @@ wget git rsync + zfs + tailscale nfs-utils cifs-utils tailscale @@ -164,18 +160,4 @@ "x-systemd.idle-timeout=600" ]; }; - - - - - -#default scary stuff - # 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 - # this value at the release version of the first install of this system. - # Before changing this value read the documentation for this option - # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "22.11"; # Did you read the comment? - }