Files
home-manager/tests/integration/standalone/kitty-theme-good-home.nix
Robert Helgesson 4964f3c6fc
Some checks are pending
GitHub Pages / publish (ubuntu-latest) (push) Waiting to run
home-manager: prepare 24.11 release
2024-12-01 10:31:51 +01:00

15 lines
325 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";
};
}