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

	# Use grub
	bootloader = {
		loader = "grub";
		mode = "bios";
		grub.biosDevice = "/dev/sda";
	};

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

	# Enable network drives
	nas.enable = true;

	# i915 Gpu requires intel driver
	services.xserver.videoDrivers = [ "intel" ];

	system.stateVersion = "24.11";
}