configurations-guix/home-configuration.scm

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