Compare commits

..

No commits in common. "5cbca316d9f589b853e7d53e0cbd9c425438443b" and "9cb71938276e0ba555c9d3c115c02d0c90466f27" have entirely different histories.

5 changed files with 287 additions and 1370 deletions

View File

@ -17,7 +17,7 @@
(define-public atuin (define-public atuin
(package (package
(name "atuin") (name "atuin")
(version "18.9.0") (version "18.4.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -26,23 +26,52 @@
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"026acssbzz01xfzl3acq56szzpyh76dzwp2m8z1pi29hlmbnyfli")))) "1zi7ar999ycvig9c9crylab540xdgr0h6v99q9j8ypk9i1fviyiz"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
(list (list
#:tests? #f ;TODO. #:tests? #f ;TODO.
#:install-source? #f #:install-source? #f
#:features #:features
''("client" "sync" "clipboard" "daemon") ''("client" "sync" "server" "clipboard" "daemon")
#:cargo-install-paths
''("crates/atuin")
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests
(lambda _
(substitute* '("crates/atuin/tests/sync.rs"
"crates/atuin/tests/users.rs"
"crates/atuin-dotfiles/src/store.rs"
"crates/atuin-dotfiles/src/store/var.rs")
(((string-append
".*async fn (" (string-join
'(;; Require running database.
"build_aliases"
"build_vars"
"sync"
"registration"
"change_password"
"multi_user_test")
"|") ")")
all)
(string-append "#[ignore]\n" all)))))
(add-after 'unpack 'patch-references (add-after 'unpack 'patch-references
(lambda _ (lambda _
(substitute* (find-files "crates/atuin/src/shell") (substitute* (find-files "crates/atuin/src/shell")
(("atuin (uuid|history|search)" all) (("atuin (uuid|history|search)" all)
(string-append #$output "/bin/" all)))))))) (string-append #$output "/bin/" all)))))
(replace 'install
(lambda* (#:key outputs features #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(registry (string-append out "/share/cargo/registry"))
(sources (string-append out "/share/cargo/src")))
(mkdir-p out)
;; Make cargo reuse all the artifacts we just built instead
;; of defaulting to making a new temp directory
(setenv "CARGO_TARGET_DIR" "./target")
;; Only install crates which include binary targets,
;; otherwise cargo will raise an error.
(invoke "cargo" "install" "--no-track" "--path" "crates/atuin"
"--root" out "--features" (string-join features))))))))
(inputs (cons sqlite (rosenthal-cargo-inputs 'atuin))) (inputs (cons sqlite (rosenthal-cargo-inputs 'atuin)))
(home-page "https://atuin.sh/") (home-page "https://atuin.sh/")
(synopsis "Sync, search and backup shell history") (synopsis "Sync, search and backup shell history")
@ -50,4 +79,6 @@
"Atuin replaces existing shell history with a SQLite database, and records "Atuin replaces existing shell history with a SQLite database, and records
additional context for commands. Additionally, it provides optional and fully additional context for commands. Additionally, it provides optional and fully
encrypted synchronisation of history between machines, via an Atuin server.") encrypted synchronisation of history between machines, via an Atuin server.")
(license license:expat))) (license license:expat)
(properties
'((disable-updater? . #t)))))

File diff suppressed because it is too large Load Diff

View File

@ -25,7 +25,6 @@
#:use-module (gnu services sddm) #:use-module (gnu services sddm)
#:use-module (gnu services xorg) #:use-module (gnu services xorg)
#:use-module (rosenthal services base) #:use-module (rosenthal services base)
#:use-module (rosenthal services networking)
;; Guix Home - services ;; Guix Home - services
#:use-module (gnu home) #:use-module (gnu home)
#:use-module (gnu home services) #:use-module (gnu home services)
@ -627,9 +626,7 @@ gtk-key-theme-name = ~a~%"
gdm-service-type gdm-service-type
sddm-service-type)) sddm-service-type))
(cons* (service network-online-service-type) (cons* (service bluetooth-service-type
(service bluetooth-service-type
(bluetooth-configuration (bluetooth-configuration
(auto-enable? #t))) (auto-enable? #t)))
@ -702,8 +699,6 @@ gtk-key-theme-name = ~a~%"
(auto-start? #f) (auto-start? #f)
(daemonize? #f))) (daemonize? #f)))
(service home-network-online-service-type)
;; NOTE: The environment variable set by home-dbus-service-type will ;; NOTE: The environment variable set by home-dbus-service-type will
;; prevent GNOME from starting when using above Shepherd configuration. ;; prevent GNOME from starting when using above Shepherd configuration.
;; Replace home-dbus-service-type, expecting the session bus will be ;; Replace home-dbus-service-type, expecting the session bus will be

View File

@ -5,7 +5,6 @@
;; Guile builtins ;; Guile builtins
#:use-module (ice-9 match) #:use-module (ice-9 match)
#:use-module (srfi srfi-1) #:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
;; Utilities ;; Utilities
#:use-module (guix gexp) #:use-module (guix gexp)
#:use-module (guix records) #:use-module (guix records)
@ -18,73 +17,16 @@
#:use-module (gnu services configuration) #:use-module (gnu services configuration)
#:use-module (gnu services dbus) #:use-module (gnu services dbus)
#:use-module (gnu services shepherd) #:use-module (gnu services shepherd)
;; Guix Home - services
#:use-module (gnu home services)
#:use-module (gnu home services shepherd)
;; Guix packages ;; Guix packages
#:use-module (gnu packages admin)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
#:use-module (gnu packages linux) #:use-module (gnu packages linux)
#:use-module (gnu packages networking) #:use-module (gnu packages networking)
#:use-module (rosenthal packages networking) #:use-module (rosenthal packages networking)
#:export (network-online-service-type #:export (sing-box-service-type
home-network-online-service-type
sing-box-service-type
sing-box-configuration sing-box-configuration
tailscale-configuration tailscale-configuration
tailscale-service-type)) tailscale-service-type))
;;;
;;; network-online (https://codeberg.org/guix/guix/issues/838#issue-1886438)
;;;
(define* (%network-online-shepherd _ #:key home-service?)
(list (shepherd-service
(requirement (if home-service? '() '(networking)))
(provision '(network-online))
(documentation "Wait for the network to come up.")
(one-shot? #t)
(start
#~(lambda _
(let ((timeout #$(file-append coreutils-minimal "/bin/timeout"))
(sh #$(file-append bash-minimal "/bin/sh"))
(ping (if #$home-service?
"ping"
#$(file-append inetutils "/bin/ping"))))
(zero?
(system* timeout "60" sh "-c"
(format #f "\
until ~a -qc1 -W1 example.org
do
sleep 1
done"
ping)))))))))
(define network-online-service-type
(service-type
(name 'network-online)
(extensions
(list (service-extension shepherd-root-service-type
%network-online-shepherd)))
(default-value #f)
(description "Wait for the network to come up.")))
(define home-network-online-service-type
(service-type
(inherit network-online-service-type)
(name 'home-network-online)
(extensions
(list (service-extension home-shepherd-service-type
(cut %network-online-shepherd <> #:home-service? #t))))))
(define-service-type-mapping
network-online-service-type => home-network-online-service-type)
;;; ;;;
;;; sing-box ;;; sing-box
;;; ;;;

View File

@ -54,11 +54,8 @@
(atuin) (atuin)
(home-fish-extension (home-fish-extension
(config (config
(list (mixed-text-file "atuin.fish" "\ (list (mixed-text-file "atuin.fish"
status is-interactive atuin "/bin/atuin init fish | source\n"))))))
and begin
" atuin "/bin/atuin init fish | source
end\n"))))))
(define home-fish-plugin-atuin-service-type (define home-fish-plugin-atuin-service-type
(service-type (service-type
@ -91,11 +88,8 @@ end\n"))))))
(direnv) (direnv)
(home-fish-extension (home-fish-extension
(config (config
(list (mixed-text-file "direnv.fish" "\ (list (mixed-text-file "direnv.fish"
status is-interactive direnv "/bin/direnv hook fish | source\n"))))))
and begin
" direnv "/bin/direnv hook fish | source
end\n"))))))
(define home-fish-plugin-direnv-service-type (define home-fish-plugin-direnv-service-type
(service-type (service-type
@ -128,11 +122,8 @@ end\n"))))))
(zoxide) (zoxide)
(home-fish-extension (home-fish-extension
(config (config
(list (mixed-text-file "zoxide.fish" "\ (list (mixed-text-file "zoxide.fish"
status is-interactive zoxide "/bin/zoxide init --cmd cd fish | source\n"))))))
and begin
" zoxide "/bin/zoxide init --cmd cd fish | source
end\n"))))))
(define home-fish-plugin-zoxide-service-type (define home-fish-plugin-zoxide-service-type
(service-type (service-type