36 lines
564 B
Nix
36 lines
564 B
Nix
{ outputs, ... }:
|
|
|
|
{
|
|
home.username = "admin";
|
|
home.homeDirectory = "/home/admin";
|
|
|
|
imports = [
|
|
] ++ (builtins.attrValues outputs.homeManagerModules); # import all homeManagerModules?
|
|
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"git.bitlab21.com" = {
|
|
identitiesOnly = true;
|
|
identityFile = ["~/.ssh/deploy_key-ssh-ed25519"];
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = [
|
|
];
|
|
|
|
home.file = {
|
|
};
|
|
|
|
home.sessionPath = [
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|
|
|