18 lines
311 B
Nix
18 lines
311 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.home-manager.enable = true;
|
|
home.username = "gkaklas";
|
|
home.homeDirectory = "/home/gkaklas";
|
|
home.stateVersion = "23.11";
|
|
|
|
services.kdeconnect.enable = true;
|
|
home.sessionVariables = rec {
|
|
EDITOR = "nvim";
|
|
};
|
|
home.sessionPath = [
|
|
"$HOME/bin"
|
|
];
|
|
}
|