Nyx: ssh config

This commit is contained in:
blahai 2024-12-14 18:54:28 +02:00
parent 404aa3ee23
commit 53a939316a
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc

View file

@ -1,4 +1,4 @@
{ inputs, config, pkgs, lib, ... }: {
{ inputs, config, pkgs, ... }: {
imports = [
../../modules/home-manager/default.nix
inputs.catppuccin.homeManagerModules.catppuccin
@ -22,13 +22,27 @@
editor = "nvim";
autocrlf = "input";
};
gpg = {
format = "ssh";
url = {
"ssh://git@github.com/" = { insteadOf = "https://github.com/"; };
};
gpg = { format = "ssh"; };
init = { defaultBranch = "main"; };
};
};
programs.ssh = {
enable = true;
extraConfig = ''
Host theia
HostName 178.63.118.252
User pingu
Host artemis
HostName 100.106.17.39
User pingu
'';
};
gtk = {
enable = true;
catppuccin = {
@ -40,6 +54,7 @@
icon.enable = true;
};
};
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;