2025-01-06 18:51:02 -07:00
|
|
|
{ inputs, config, ... }:
|
2025-01-06 18:32:12 -07:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
# Import plasma manager and all of my custom modules for use
|
|
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
|
|
./modules
|
|
|
|
# Import main config
|
|
|
|
./meta.nix
|
|
|
|
./config
|
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
stateVersion = "24.11";
|
|
|
|
|
2025-01-06 18:51:02 -07:00
|
|
|
username = config.meta.home-manager.username;
|
|
|
|
homeDirectory = /. + "/home/${config.meta.home-manager.username}";
|
2025-01-06 18:32:12 -07:00
|
|
|
};
|
|
|
|
}
|