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

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

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