From 9734ee88d495ddf24536683435949fe12aca7259 Mon Sep 17 00:00:00 2001 From: 7032 <7032@noreply.localhost> Date: Sun, 10 Mar 2024 22:54:20 +0100 Subject: [PATCH] Supprimer home-configuration.scm --- home-configuration.scm | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 home-configuration.scm diff --git a/home-configuration.scm b/home-configuration.scm deleted file mode 100644 index aa45789..0000000 --- a/home-configuration.scm +++ /dev/null @@ -1,40 +0,0 @@ -;; Ce fichier « home-environment » peut être passé à « guix home reconfigure » pour reproduire -;; le contenu de votre profil. Son contenu est « symbolique » : il ne spécifie que les -;; noms des paquets. Pour reproduire exactement le même profil, vous devez aussi -;; retenir les canaux utilisés, ceux renvoyés par « guix describe ». -;; Voir la section « Répliquer Guix » dans le manuel. - - -(use-modules (gnu home) - (gnu services) - (gnu packages) - (gnu packages gnupg) - (guix gexp) - (gnu home services shells) - (gnu home services gnupg)) - -(home-environment - (services - (list (service home-bash-service-type - (home-bash-configuration - (aliases '( - ("clear" . "printf '\\033c'") - ("dir" . "dir --color=auto") - ("egrep" . "egrep --color=auto") - ("fgrep" . "fgrep --color=auto") - ("grep" . "grep --color=auto") - ("la" . "ls -A") - ("ll" . "ls -l") - ("l" . "ls -CF") - ("ls" . "ls -p --color=auto") - ("vdir" . "vdir --color=auto"))) - (bashrc (list (local-file "/home/Larry/.config/guix/.bashrc" "bashrc"))) - (bash-profile (list (local-file - "/home/Larry/.config/guix/.bash_profile" - "bash_profile"))))) - (service home-gpg-agent-service-type - (home-gpg-agent-configuration - (pinentry-program - (file-append pinentry-gnome3 "/bin/pinentry-gnome3")) - (ssh-support? #t)))))) -