;; 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 "bash-completion" "bind:utils" "cryptsetup" "curl" "gnupg" "gparted" "grub" "hplip" "htop" "lm-sensors" "neofetch" "openssh" "parted" "speedtest-cli" "testdisk" "tree" ;; GNOME (Outils) "dconf-editor" "endeavour" "gnome-builder" "gnome-shell-extension-blur-my-shell" "gnome-shell-extension-burn-my-windows" "gnome-shell-extension-dash-to-dock" "gnome-shell-extension-topicons-redux" "gnome-shell-extension-transparent-window" "gnome-tweaks" "gtg" "nextcloud-client" "seahorse" "xdg-desktop-portal" ;; DEV (OUTILS) "adb" "autobuild" "autoconf" "autogen" "automake" "bash:include" "binutils" "bison" "build" "ccache" "cmake" "config" "dbus" "dconf" "doxygen" "fastboot" "file" "flex" "font-openmoji" "freeglut" "gcc-toolchain" "gettext" "git" "git-lfs" "glew" "glfw" "glibc-locales" "glm" "glu" "gmp" "gobject-introspection" "gsettings-desktop-schemas" "gtk" "isl" "libadwaita" "libappindicator" "libepoxy" "libglvnd" "libpthread-stubs" "libproxy" "libtool" "libtree" "libx11" "libxkbcommon" "libxml2" "linux-libre-headers" "m4" "make" "mesa" "mesa-headers" "mesa-utils" "minicom" "mpc" "mpfr" "nasm" "ncurses" "openlibm" "pango" "patchelf" "pkg-config" "texinfo" ;; VIRTUALISATION/CONTENEURISATION "flatpak" "virt-manager" "virt-viewer" ;; PYTHON (GTK) "python" "python2" "python-axolotl" "python-css-parser" "python-dbus" "python-distro" "python-distutils-extra" "python-gssapi" "python-keyring" "python-markdown" "python-nbxmpp" "python-notify2" "python-packaging" "python-pillow" "python-precis-i18n" "python-pip" "python-pycairo" "python-pygobject" "python-pyopenssl" "python-setuptools" ;; CUPS "system-config-printer" ;; JEUX "0ad" "abe" "bsd-games" "freeorion" "kapman" "kbreakout" "ksirk" "minetest" "open-adventure@1" "supertux" "supertuxkart" "xonotic" ;; MULTIMEDIA/MUSIQUE/COMMUNICATION "ardour" "dino" "dosage" "gajim" "gajim-omemo" "ghostwriter" "gimp" "hexchat" "icecat" "icedove" "inkscape" "kdenlive" "libreoffice" "mumble" "musescore" "qbittorrent" "transmission" "ungoogled-chromium" "vlc" "yt-dlp" ))) ;; 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 '( ("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/neox/.config/guix//.bashrc" "bashrc"))) (bash-profile (list (local-file "/home/neox/.config/guix//.bash_profile" "bash_profile"))))))))