From 8609f3b8d01fd9064ed186e63b1853ebb37c368f Mon Sep 17 00:00:00 2001 From: Quentin Aristote Date: Sun, 13 Nov 2022 12:59:22 +0100 Subject: basics: profiles: restructure and add icons --- basics/default.nix | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) (limited to 'basics/default.nix') diff --git a/basics/default.nix b/basics/default.nix index 186765f..b1dadf5 100644 --- a/basics/default.nix +++ b/basics/default.nix @@ -26,23 +26,29 @@ in { postalCode = "75230 CEDEX 05"; country = "France"; }; - profiles = [ - { - network = "GitLab"; - url = "https://git.eleves.ens.fr/qaristote"; - username = "qaristote"; - } - { - network = "GitLab"; - url = "https://gitlab.math.univ-paris-diderot.fr/aristote"; - username = "aristote"; - } - { - network = "GitHub"; - url = "https://github.com/qaristote"; - username = "qaristote"; - } - ]; + profiles = { + Git = { + icon = "git"; + profiles = { + personal = { + icon = "github"; + url = "https://github.com/qaristote"; + }; + ENS = { + icon = "gitlab"; + url = "https://git.eleves.ens.fr/qaristote"; + }; + IRIF = { + icon = "gitlab"; + url = "https://gitlab.math.univ-paris-diderot.fr/aristote"; + }; + }; + }; + LinkedIn = { + icon = "linkedin"; + url = "https://fr.linkedin.com/in/quentin-aristote-83979b186"; + }; + }; keys = let getKeyFiles = type: keys: { "${type}" = builtins.foldl' -- cgit v1.2.3