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

	imports = [
		./alacritty.nix
		./firefox.nix
		./git.nix
		#./htop.nix  # crashes the home manager service if htoprc already exists, bug
		./initial-home-setup.nix
		./pcmanfm.nix  # TODO mk name changeable & doesn't seem to work right now
		./theme.nix
		./wallpapers.nix
	];

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