mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-05 08:16:56 +00:00
14 lines
316 B
Nix
14 lines
316 B
Nix
{
|
|
home.username = "alice";
|
|
home.homeDirectory = "/home/alice";
|
|
|
|
home.stateVersion = "24.11"; # Please read the comment before changing.
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
themeFile = "SpaceGray_Eighties";
|
|
};
|
|
}
|