mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
Nyx: ssh config
This commit is contained in:
parent
404aa3ee23
commit
53a939316a
1 changed files with 18 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue