diff --git a/hosts/nyx/home.nix b/hosts/nyx/home.nix index 9f412b7..c52fd72 100644 --- a/hosts/nyx/home.nix +++ b/hosts/nyx/home.nix @@ -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;