nix-config/homeManagerModules/default.nix

17 lines
286 B
Nix
Raw Normal View History

2024-11-11 18:45:30 +01:00
{ ... }:
{
imports = [
./desktop
./programs
2024-11-11 19:05:33 +01:00
./packages
2024-11-11 18:45:30 +01:00
];
2024-11-11 19:05:33 +01:00
config = {
home.username = "krop";
home.homeDirectory = "/home/krop";
home.stateVersion = "24.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
};
2024-11-11 18:45:30 +01:00
}