From b44df60277b2e83c9c5b23387013deffcb75730a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Gro=C3=9Fmann?= Date: Fri, 28 Jul 2023 23:41:48 +0900 Subject: [PATCH] chore: update renamed fonconfig fix: fixed github ssh config --- hosts/common/graphical/fonts.nix | 1 - users/patrick/ssh.nix | 8 +++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/hosts/common/graphical/fonts.nix b/hosts/common/graphical/fonts.nix index 187dbab..a16169c 100644 --- a/hosts/common/graphical/fonts.nix +++ b/hosts/common/graphical/fonts.nix @@ -1,6 +1,5 @@ {pkgs, ...}: { fonts = { - enableDefaultFonts = false; enableGhostscriptFonts = false; fontDir.enable = false; fontconfig = { diff --git a/users/patrick/ssh.nix b/users/patrick/ssh.nix index 95dd170..e8165ce 100644 --- a/users/patrick/ssh.nix +++ b/users/patrick/ssh.nix @@ -15,11 +15,6 @@ user = "root"; inherit identityFile; }; - "github" = { - hostname = "github.com"; - user = "git"; - inherit identityFile; - }; "patricknix" = { hostname = "localhost"; user = "root"; @@ -58,6 +53,9 @@ "gitlab.lrz.de" = { inherit identityFile; }; + "github.com" = { + inherit identityFile; + }; "*" = { identitiesOnly = true; };