nix/home-manager/standalone.nix

19 lines
421 B
Nix
Raw Normal View History

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";
username = meta.home-manager.username;
homeDirectory = /. + "/home/${meta.home-manager.username}";
};
}