summaryrefslogtreecommitdiff
path: root/hosts/nixbook-pro/default.nix
blob: ed59bf9e6c71abb36266913b6390b02b65e5a13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ config, lib, pkgs, ... }:

{
	imports = [
		./hardware.nix
		../../modules/hyprland/monitor.nix
	];

	networking = {
		hostName = "nixbook-pro";
		enableB43Firmware = true;
	};

	boot.loader = {
		efi.canTouchEfiVariables = true;
		grub = {
			enable = true;
			device = "nodev";
			efiSupport = true;
			configurationLimit = 10;
		};
	};

	hyprland.monitors = {
		default = {
			resolution = "preferred";
			position = "auto";
			scale = 1;
		};
	};

	webtray.instances = {};
	
	system.stateVersion = "25.11"; # Did you read the comment?

}