mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
15 lines
325 B
Nix
15 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";
|
||
|
};
|
||
|
}
|