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