diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-23 00:02:53 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-23 00:02:53 -0400 |
commit | 4a3a1661acc312ad3dc63179e53693fa99987e88 (patch) | |
tree | 7cb8a40328cc01f5571e2f15c5f5dbe75c0ed9c0 /home | |
parent | add bash_profie fallback (diff) | |
download | dotfiles-guix-4a3a1661acc312ad3dc63179e53693fa99987e88.tar.gz dotfiles-guix-4a3a1661acc312ad3dc63179e53693fa99987e88.tar.bz2 dotfiles-guix-4a3a1661acc312ad3dc63179e53693fa99987e88.zip |
remove base home, it was a bad idea
Diffstat (limited to 'home')
-rw-r--r-- | home/base.scm | 76 | ||||
-rwxr-xr-x | home/config/bash/bash_profile | 1 |
2 files changed, 0 insertions, 77 deletions
diff --git a/home/base.scm b/home/base.scm deleted file mode 100644 index c0edb74..0000000 --- a/home/base.scm +++ /dev/null @@ -1,76 +0,0 @@ -;; This "home-environment" file can be passed to 'guix home reconfigure' -;; to reproduce the content of your profile. This is "symbolic": it only -;; specifies package names. To reproduce the exact same profile, you also -;; need to capture the channels being used, as returned by "guix describe". -;; See the "Replicating Guix" section in the manual. - -;; Guix base home config -;; Used for root - -(use-modules (gnu home) - (gnu packages) - (gnu services) - (guix packages) - (guix gexp) - (gnu home services shells) - (gnu home services desktop) - (gnu home services) - (freya packages vim) - (freya packages shells) - (freya packages certs)) - - -(home-environment - ;; Below is the list of packages that will show up in your - ;; Home profile, unser ~/.guix-home/profile. - (packages (append (specifications->packages (list ; devtools - "binutils" - "make" - "node" - "pkg-config" - "python-pynvim" - "git" - "openssl" - - ; langs - "gcc-toolchain" - "clang-toolchain" - "rust" - "python" - - ; shell - "zsh-syntax-highlighting" - "tree-sitter-cli" - "neofetch" - "pfetch" - "fd")) - - (list ; system - freya-ca-certs - - ; programs - neovim-new - - ; shell - zsh-autosuggestions - vim-plug))) - - ;; Below is the list of Home services. To search for available - ;; services, run 'guix home search KEYWORD' in a terminal. - (services - (list (service home-zsh-service-type - (home-zsh-configuration - (zshrc (list (local-file "config/zsh/zshrc"))) - (zprofile (list (local-file "config/zsh/zprofile"))))) - - (service home-xdg-configuration-files-service-type - `(("nvim" ,(local-file "config/nvim" #:recursive? #t)))) - - (service home-files-service-type - `((".local/share/nvim/site/autoload/plug.vim" ,(file-append vim-plug "/share/vim/plug.vim")) - (".ssh/config" ,(local-file "config/ssh/config")) - (".gitconfig" ,(local-file "config/git/gitconfig")) - (".bash_profile" ,(local-file "config/bash/bash_profile")))) - - (service home-dbus-service-type) - ))) diff --git a/home/config/bash/bash_profile b/home/config/bash/bash_profile deleted file mode 100755 index 85ecd73..0000000 --- a/home/config/bash/bash_profile +++ /dev/null @@ -1 +0,0 @@ -/run/current-system/profile/bin/zsh "$HOME/.config/zsh/.zprofile" |