summaryrefslogtreecommitdiff
path: root/home-manager/home/default.nix
blob: ed3c56440c9164db5fe2b515d25d0bad8667750b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{pkgs, ...}: {
  imports = [ 
  	#./hyprland.nix 
	#./syncthing.nix 
	./theming.nix 
	#./neovim.nix 
	#./xdg.nix
   ];

   nixpkgs.config.allowUnfree = true;
   

   home.username = "wilkuu";
   home.homeDirectory = "/home/wilkuu";
   home.stateVersion = "24.11"; 
   programs.home-manager.enable = true; 
}