nixos/modules/home/default.nix
Florian RICHER fe7d6ced06
Some checks failed
check / check (push) Failing after 0s
StateVersion: Update to 24.11
2024-10-28 21:39:53 +01:00

21 lines
252 B
Nix

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