configurations-guix/home-configuration.scm

168 lines
8.3 KiB
Scheme
Raw Normal View History

2023-01-10 16:37:39 +01:00
;; 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"
2023-01-17 19:07:34 +01:00
"python-pyopenssl"
"python-pygobject"
"python-pycairo"
"python-precis-i18n"
"python-pillow"
"python-packaging"
"python-nbxmpp"
"python-keyring"
"python-gssapi"
"python-dbus"
2023-01-17 19:07:34 +01:00
"python-css-parser"
"python-setuptools"
"python-distutils-extra"
"python-notify2"
"python-axolotl"
;; CUPS
"system-config-printer"
;; JEUX
2023-01-10 16:37:39 +01:00
"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"
2023-01-10 16:37:39 +01:00
"ardour"
"icedove"
"inkscape"
"libreoffice"
2023-01-10 16:37:39 +01:00
"gimp"
"icecat"
)))
2023-01-10 16:37:39 +01:00
;; 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")
2023-01-17 19:07:34 +01:00
("clear" . "printf '\\033c'")
2023-01-10 16:37:39 +01:00
("ll" . "ls -l")
("ls" . "ls -p --color=auto")
("vdir" . "vdir --color=auto")))
2023-01-17 19:07:34 +01:00
(bashrc (list (local-file
"/home/neox/.config/guix//.bashrc" "bashrc")))
2023-01-10 16:37:39 +01:00
(bash-profile (list (local-file
2023-01-17 19:07:34 +01:00
"/home/neox/.config/guix//.bash_profile"
2023-01-10 16:37:39 +01:00
"bash_profile"))))))))