diff options
Diffstat (limited to 'modules/hosts')
| -rw-r--r-- | modules/hosts/T495/configuration.nix | 18 | 
1 files changed, 17 insertions, 1 deletions
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";  }  | 
