diff --git a/.bash_profile b/.bash_profile index 483497c..af980e1 100755 --- a/.bash_profile +++ b/.bash_profile @@ -3,9 +3,18 @@ # Set up the home environment profile. if [ -f ~/.profile ]; then source ~/.profile; fi +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then source ~/.bashrc; fi +PS1='\u@\h \w${GUIX_ENVIRONMENT:+ [env]}\$ ' +# Set up the system, user profile, and related variables. +# /etc/profile will be sourced by bash automatically +# Set up the home environment profile. +if [ -f ~/.profile ]; then source ~/.profile; fi + # Honor per-interactive-shell startup file if [ -f ~/.bashrc ]; then source ~/.bashrc; fi PS1='\u@\h \w${GUIX_ENVIRONMENT:+ [env]}\$ ' # Honor per-interactive-shell startup file if [ -f ~/.bashrc ]; then . ~/.bashrc; fi + diff --git a/home-configuration.scm b/home-configuration.scm index 036b5eb..dddebe4 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -13,132 +13,28 @@ (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 "testdisk" - "gajim" - "virt-viewer" - "cups" - "kdenlive" - "grub" - "parted" - "libxkbcommon" - "qt-creator" - "csound" - "glfw" - "glew" - "hexchat" - "transmission" - "gnome-tweaks" - "xdg-desktop-portal" - "gnome-builder" - "dino" - "gtk" - "r-openssl" - "vlc" - ;"gobject-introspection" - ;"linux-libre-headers" - "libxml2" - "yt-dlp" - "musescore" - "0ad" - "libreoffice" - "qbittorrent" - "xournalpp" - "pandoc" - "icedove" - "ardour" - "icecat" - "cmake" - "node" - "ghostwriter" - "python" - "gtg" - "mumble" - "flatpak" - "blobwars" - "barrage" - "armagetronad" - "pioneer" - "supertuxkart" - "supertux" - "python-pip" - "minetest" - "apricots" - "abe" - "teeworlds" - "mrrescue" - "kollision" - "hyperrogue" - "gnujump" - "freerct" - "freeorion" - "arx-libertatis" - "adanaxisgpl" - "foobillard++" - "barony" - "extremetuxracer" - "git" - "gnupg" - "seahorse" - "nextcloud-client" - "xonotic" - "dconf-editor" + (packages (specifications->packages (list "dbus" "dconf" - "lm-sensors" - "gajim-omemo" - "gparted" - "openssh" - "python-markdown" - "mesa" - "glu" - "libepoxy" - "gcc" - "tk" - "gettext" - "bastet" - "gnome-shell-extension-dash-to-dock" - "cryptsetup" - "curl" - "neofetch" - "gash" - "bash:include" - "bash" - "tree" - "nasm" - "rtmidi" - "libglvnd" - "mesa-headers" - "doxygen" - "libx11" - "libpthread-stubs" - "gnome-shell-extension-burn-my-windows" - "bison" - "flex" - "texinfo" - "file" - "mpc" - "mpfr" - "gmp" - "ndisc6" - "tcl" - "htop" - "config" - "autogen" - "binutils" - "m4" - "pkg-config" - "libtool" - "autoconf" - "automake" - "build" - "make" - "rust-clearscreen" - "libtree" - "font-openmoji" - "unicode-emoji" - "gnome-shell-extension-transparent-window" - "gnome-shell-extension-topicons-redux" - "bash-completion" + "python-pyopenssl" + "python-pygobject" + "python-pycairo" + "python-precis-i18n" + "python-pillow" + "python-packaging" + "python-nbxmpp" + "python-keyring" + "python-gssapi" "python-dbus" + "python-css-parser" + "libappindicator" + "gsettings-desktop-schemas" + "python-setuptools" + "libadwaita" + "python-distutils-extra" + "system-config-printer" + "python-notify2" + "gobject-introspection@1.66" + "gtk" "open-adventure@1" "dino" "gnome-tweaks" @@ -225,11 +121,12 @@ ("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"))) + (bashrc (list (local-file + "/home/neox/.config/guix//.bashrc" "bashrc"))) (bash-profile (list (local-file - "/home/neox/.config/guix/.bash_profile" + "/home/neox/.config/guix//.bash_profile" "bash_profile"))))))))