10 lines
171 B
Nix
10 lines
171 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.home-manager.enable = true;
|
|
home.username = "gkaklas";
|
|
home.homeDirectory = "/home/gkaklas";
|
|
home.stateVersion = "23.11";
|
|
}
|