nixos/modules/home/default.nix

22 lines
252 B
Nix
Raw Normal View History

2024-10-28 21:26:34 +01:00
{ ... }:
{
imports = [
../common.nix
./apps
./editors
./desktop
./shell
];
home = {
username = "florian";
homeDirectory = "/home/florian";
2024-12-05 22:26:38 +01:00
stateVersion = "25.05";
};
programs.home-manager.enable = true;
}