mirror of
https://git.kb-one.de/kb01/aux-config.git
synced 2025-12-05 10:28:53 +00:00
23 lines
449 B
Nix
23 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!!!
|
|
}
|
|
|