19 lines
421 B
Nix
19 lines
421 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
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";
|
||
|
|
||
|
username = meta.home-manager.username;
|
||
|
homeDirectory = /. + "/home/${meta.home-manager.username}";
|
||
|
};
|
||
|
}
|