config/maddie/home.nix

11 lines
178 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, username, ... }:
{
programs.home-manager.enable = true;
home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "22.11";
};
}