nixos/modules/home/default.nix

22 lines
266 B
Nix

{ ... }:
{
imports = [
../common.nix
./apps
./configs
./editors
./desktop
./shell
];
home = {
username = "florian";
homeDirectory = "/home/florian";
stateVersion = "25.05";
};
programs.home-manager.enable = true;
}