1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00
home-manager/tests/integration/standalone/kitty-theme-good-home.nix
2024-11-24 17:48:58 +01:00

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