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 = [
|
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;
|
||||||
|
|
Loading…
Reference in a new issue