aux-config/homes/aarch64-linux/master@kb-senfnvp/default.nix
kB01 cbccbed0cc
All checks were successful
/ Check Nix Flake (push) Successful in 2m44s
Added Host kb-senfnvp
2025-03-07 01:54:44 +01:00

22 lines
449 B
Nix

{ config, pkgs, lib, inputs, ... }:
{
home.username = "master";
home.homeDirectory = "/home/master";
home.packages = with pkgs; [
fastfetch
btop
sops
];
# SSH Configuration
programs.ssh.enable = true;
programs.ssh.matchBlocks."kb01@kb-one-git" = {
host = "git.kb-one.de";
user = "git";
identityFile = "/home/master/.ssh/kb01@kb-one-git";
port = 9522;
};
home.stateVersion = "24.05"; # NEVER CHANGE!!!
}