summaryrefslogtreecommitdiff
path: root/modules/hosts/libreX60/configuration.nix
blob: 942793dcaac33f824d978317fc76903da2bb5237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }: {
	imports = [ ./hardware-configuration.nix ];
	networking.hostName = "libreX60";

	# Enable extra software pkgs
	software.desktop = {
		office.enable = true;
	};

	# Enable network drives
	nas.enable = true;

	system.stateVersion = "24.11";
}