mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
14 lines
276 B
Nix
14 lines
276 B
Nix
|
{ ... }: {
|
||
|
home.username = "alice";
|
||
|
home.homeDirectory = "/home/alice";
|
||
|
home.stateVersion = "24.05";
|
||
|
|
||
|
# Let Home Manager install and manage itself.
|
||
|
programs.home-manager.enable = true;
|
||
|
|
||
|
programs.kitty = {
|
||
|
enable = true;
|
||
|
themeFile = "No Such Theme";
|
||
|
};
|
||
|
}
|