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