summaryrefslogtreecommitdiff
path: root/modules/home/default.nix
blob: e60bbff72041d6c836ef774e0c42f830751ea7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, userDetails, ... }: {
	home = {
		username = userDetails.username;
		homeDirectory = userDetails.home.root;
		stateVersion = "24.05";
	};

	imports = [
		./firefox.nix
		./git.nix
		./initial-home-setup.nix
		./theme.nix
	];

	theme.mint.enable = lib.mkDefault true;
}