mirror of
https://github.com/nix-community/home-manager
synced 2024-12-04 17:09:47 +01:00
f46891fc0a
(cherry picked from commit 4964f3c6fc
)
14 lines
325 B
Nix
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";
|
|
};
|
|
}
|