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

	imports = [
		./firefox.nix
		./git.nix
		./initial-home-setup.nix
		./pcmanfm.nix  # TODO mk name changeable & doesn't seem to work right now
		./theme.nix
	];

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