1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-05 08:16:56 +00:00
home-manager/tests/integration/standalone/kitty-theme-good-home.nix
2025-02-21 23:20:07 -06:00

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";
};
}