;; 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 packages) (gnu services) (guix gexp) (gnu home services shells)) (home-environment ;; Ci-dessous se trouve la liste des paquets qui seront disponibles dans votre ;; profil personnel, dans ~/.guix-home/profile. (packages (specifications->packages (list ;; OUTILS SYSTEMES "lm-sensors" "gnupg" "speedtest-cli" "bind:utils" "openssh" "curl" "htop" "bash-completion" ;; GNOME (GTK) "dbus" "dconf" "gobject-introspection" "gsettings-desktop-schemas" "gtk" "libadwaita" "libappindicator" "pango" "font-openmoji" "glibc-locales" ;; OpenGL "glu" "glew" "glfw" "glm" "freeglut" "mesa" "mesa-headers" "mesa-utils" "libepoxy" ;; GNOME (Outils) "dconf-editor" "gnome-tweaks" "gnome-builder" "endeavour" "nextcloud-client" "seahorse" "gnome-shell-extension-dash-to-dock" "gnome-shell-extension-burn-my-windows" "gnome-shell-extension-transparent-window" "gnome-shell-extension-blur-my-shell" ;; DEV (OUTILS) "cmake" "git" "fastboot" "adb" "gcc-toolchain" "pkg-config" "isl" "libtool" "flex" "bison" "texinfo" "autobuild" "autogen" "autoconf" "automake" "make" "build" "minicom" ;; VIRTUALISATION/CONTENEURISATION "flatpak" "virt-manager" ;; PYTHON (GTK) "python" "python-pyopenssl" "python-pygobject" "python-pycairo" "python-precis-i18n" "python-pillow" "python-packaging" "python-nbxmpp" "python-keyring" "python-gssapi" "python-dbus" "python-css-parser" "python-setuptools" "python-distutils-extra" "python-notify2" "python-axolotl" ;; CUPS "system-config-printer" ;; JEUX "open-adventure@1" "0ad" "ksirk" "kbreakout" "kapman" "freeorion" "abe" "xonotic" "supertuxkart" "supertux" "minetest" "bsd-games" ;; XMPP "dino" "gajim" "gajim-omemo" ;; AUDIOCONF "mumble" ;; MULTIMEDIA/MUSIQUE "vlc" "dosage" "yt-dlp" "ungoogled-chromium" "musescore" "transmission" "qbittorrent" "ardour" "icedove" "inkscape" "libreoffice" "gimp" "icecat" ))) ;; Voici la liste des services personnels. Pour trouver les services disponibles, ;; lancez « guix home search MOT-CLÉ » dans un terminal. (services (list (service home-bash-service-type (home-bash-configuration (aliases '(("dir" . "dir --color=auto") ("egrep" . "egrep --color=auto") ("fgrep" . "fgrep --color=auto") ("grep" . "grep --color=auto") ("l" . "ls -CF") ("la" . "ls -A") ("clear" . "printf '\\033c'") ("ll" . "ls -l") ("ls" . "ls -p --color=auto") ("vdir" . "vdir --color=auto"))) (bashrc (list (local-file "/home/neox/.config/guix//.bashrc" "bashrc"))) (bash-profile (list (local-file "/home/neox/.config/guix//.bash_profile" "bash_profile"))))))))