From 78d758b4b22e1150b32f3643ef5a9f04f76abf26 Mon Sep 17 00:00:00 2001
From: Tim Keller <tjkeller.xyz>
Date: Tue, 5 Nov 2024 10:00:57 -0600
Subject: fix bugs for t495 and cleanup

---
 modules/hosts/T495/configuration.nix | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

(limited to 'modules/hosts')

diff --git a/modules/hosts/T495/configuration.nix b/modules/hosts/T495/configuration.nix
index 9983a21..8e10260 100644
--- a/modules/hosts/T495/configuration.nix
+++ b/modules/hosts/T495/configuration.nix
@@ -4,11 +4,27 @@
 		./wg.nix
 	];
 	networking.hostName = "T495";
-	grub.mode = "efi";
 
+	# Use systemd-boot instead of grub
+	# grub does not recognize fs
+	grub.enable = false;
+	boot.loader = {
+		systemd-boot.enable = true;
+		efi.canTouchEfiVariables = true;
+	};
+
+	# Enable extra software pkgs
+	software = {
+		desktop.extra.enable = true;
+		dev.extra.enable = true;
+	};
 	environment.systemPackages = with pkgs; [
 		input-leap
 	];
+	docker.enable = true;
+
+	# Enable network drives
+	fs.networkFS.enable = true;
 
 	system.stateVersion = "24.05";
 }
-- 
cgit v1.2.3