adding pkgs in guix and the linux-run script
This commit is contained in:
parent
6b8528702c
commit
8f36371452
4 changed files with 133 additions and 39 deletions
|
@ -5,6 +5,8 @@
|
|||
;;
|
||||
|
||||
(define-module (home)
|
||||
#:use-module (pkgs emacs-xyz)
|
||||
#:use-module (pkgs tridactyl-native)
|
||||
#:use-module (home-services pipewire)
|
||||
#:use-module (gnu home)
|
||||
#:use-module (gnu home services)
|
||||
|
@ -24,17 +26,6 @@
|
|||
#:use-module (guix build-system emacs)
|
||||
#:use-module ((guix licenses) #:prefix license:))
|
||||
|
||||
|
||||
;; (define home-scripts
|
||||
;; (package
|
||||
;; (name "home-scripts")
|
||||
;; (version "0.1")
|
||||
;; (source (local-file "../scripts" #:recursive #t))
|
||||
;; (build-system copy-build-system)
|
||||
;; (arguments
|
||||
;; `(#:install-plan
|
||||
;; '(())))))
|
||||
|
||||
(define home-packages
|
||||
(list "vim"
|
||||
"exa"
|
||||
|
@ -87,6 +78,7 @@
|
|||
"breeze"
|
||||
"breeze-icons"
|
||||
"kdeconnect"
|
||||
;; "tridactyl-native"
|
||||
"qtwayland@5.15.8"
|
||||
;; "qtwayland"
|
||||
"egl-wayland"
|
||||
|
@ -137,6 +129,7 @@
|
|||
"emacs-use-package"
|
||||
"emacs-exec-path-from-shell"
|
||||
"emacs-langtool"
|
||||
"emacs-avy"
|
||||
"emacs-general"
|
||||
"emacs-evil"
|
||||
"emacs-evil-collection"
|
||||
|
@ -215,31 +208,6 @@
|
|||
"isync"
|
||||
"mu"))
|
||||
|
||||
(define emacs-dired-rsync
|
||||
(let ((commit "c4f484bff94ed2ddfe0fa45f1e695a1637e1a35a")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-dired-rsync")
|
||||
(version (git-version "0.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/stsquad/dired-rsync.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0000000000000000000000000000000000000000000000000000"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments (list #:emacs emacs-next-pgtk))
|
||||
(license license:gpl3+)
|
||||
(home-page "https://github.com/stsquad/dired-rsync.git")
|
||||
(synopsis "dired-rsync – asynchronous rsync from dired")
|
||||
(description "\
|
||||
This package adds the command dired-rsync which allows the user to copy
|
||||
marked files in a dired buffer via rsync."))))
|
||||
|
||||
(home-environment
|
||||
(packages (specifications->packages home-packages))
|
||||
|
||||
|
@ -265,14 +233,14 @@ marked files in a dired buffer via rsync."))))
|
|||
("GTK_USE_PORTAL" . "1")
|
||||
("EDITOR" . "emacsclient -t -a")
|
||||
("VISUAL" . "emacsclient -c -a")))
|
||||
(bashrc (list (plain-file "blesh" "source .guix-home/profile/share/blesh/ble.sh")
|
||||
(plain-file "home-manager" "source .nix-profile/etc/profile.d/hm-session-vars.sh")
|
||||
(bashrc (list (plain-file "blesh" "source $HOME/.guix-home/profile/share/blesh/ble.sh")
|
||||
(plain-file "home-manager" "source $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh")
|
||||
;;These need to be here so they are at the bottom and therefore after guix-defaults
|
||||
(plain-file "exal" "alias ls=\"exa -l\"")
|
||||
(plain-file "exala" "alias la=\"exa -la\"")
|
||||
(plain-file "less-color" "export LESS=\"--RAW-CONTROL-CHARS\"")
|
||||
(plain-file "man-colors" "[[ -f ~/.LESS_TERMCAP ]] && . ~/.LESS_TERMCAP")
|
||||
(plain-file "starship" "source .config/starship/init.sh")))))
|
||||
(plain-file "starship" "source $HOME/.config/starship/init.sh")))))
|
||||
(simple-service 'extra-env-vars
|
||||
home-environment-variables-service-type
|
||||
`(("PATH" . "$PATH:/home/chris/bin:/home/chris/.nix-profile/bin")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue