summaryrefslogtreecommitdiff
path: root/modules/hosts/T430/configuration.nix
blob: 791027513d58b3232c12de6dca928d53510059d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }: {
	imports = [ ./hardware-configuration.nix ];

	# TODO this does not function
	#boot.initrd.systemd.extraBin = {
	#	sh = "${pkgs.dash}/bin/dash";
	#	vim = "${pkgs.neovim}/bin/nvim";
	#};

	# Open ports in the firewall.
	# networking.firewall.allowedTCPPorts = [ ... ];
	# networking.firewall.allowedUDPPorts = [ ... ];
	# Or disable the firewall altogether.
	# networking.firewall.enable = false;

	system.stateVersion = "24.05";
}