config/homes/laptop/home.nix
2024-09-29 16:42:01 +01:00

11 lines
188 B
Nix

{ username, lib, ... }:
{
programs.home-manager.enable = true;
home = {
inherit username;
homeDirectory = lib.mkForce "/Users/${username}";
stateVersion = "24.11";
};
}