2024-04-28 22:30:09 +03:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.username = "gkaklas";
|
|
|
|
home.homeDirectory = "/home/gkaklas";
|
|
|
|
home.stateVersion = "23.11";
|
2024-08-03 17:07:50 +03:00
|
|
|
|
|
|
|
services.kdeconnect.enable = true;
|
2024-08-03 17:08:51 +03:00
|
|
|
home.sessionVariables = rec {
|
|
|
|
EDITOR = "nvim";
|
|
|
|
};
|
2024-08-03 17:08:13 +03:00
|
|
|
home.sessionPath = [
|
|
|
|
"$HOME/bin"
|
|
|
|
];
|
2024-04-28 22:30:09 +03:00
|
|
|
}
|