mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
ecaed80b18
With this change the theme check happens at activation time. An integration test is also added to verify the functionality. Fixes #5110
14 lines
325 B
Nix
14 lines
325 B
Nix
{ ... }: {
|
|
home.username = "alice";
|
|
home.homeDirectory = "/home/alice";
|
|
|
|
home.stateVersion = "24.05"; # 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";
|
|
};
|
|
}
|