nixos/home/users/admin/default.nix

36 lines
564 B
Nix
Raw Normal View History

2025-01-19 19:18:31 +00:00
{ outputs, ... }:
2024-05-14 14:51:09 +01:00
{
home.username = "admin";
home.homeDirectory = "/home/admin";
imports = [
] ++ (builtins.attrValues outputs.homeManagerModules); # import all homeManagerModules?
2025-01-20 09:58:16 +00:00
programs.ssh = {
enable = true;
matchBlocks = {
"git.bitlab21.com" = {
identitiesOnly = true;
identityFile = ["~/.ssh/deploy_key-ssh-ed25519"];
};
};
};
2024-05-14 14:51:09 +01:00
home.packages = [
];
home.file = {
};
home.sessionPath = [
];
home.sessionVariables = {
EDITOR = "nvim";
2024-05-14 14:51:09 +01:00
};
programs.home-manager.enable = true;
}