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 = [ imports = [
../../modules/home-manager/default.nix ../../modules/home-manager/default.nix
inputs.catppuccin.homeManagerModules.catppuccin inputs.catppuccin.homeManagerModules.catppuccin
@ -22,13 +22,27 @@
editor = "nvim"; editor = "nvim";
autocrlf = "input"; autocrlf = "input";
}; };
gpg = { url = {
format = "ssh"; "ssh://git@github.com/" = { insteadOf = "https://github.com/"; };
}; };
gpg = { format = "ssh"; };
init = { defaultBranch = "main"; }; 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 = { gtk = {
enable = true; enable = true;
catppuccin = { catppuccin = {
@ -40,6 +54,7 @@
icon.enable = true; icon.enable = true;
}; };
}; };
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
package = pkgs.bibata-cursors; package = pkgs.bibata-cursors;