Compare commits
No commits in common. "b93fadc4a6e0addc47b56c723f997b076f2db931" and "10c71dfa653ba4330632c966b3c5626bade3b7d4" have entirely different histories.
b93fadc4a6
...
10c71dfa65
|
@ -94,7 +94,6 @@
|
|||
"tcpdump"
|
||||
"pamixer"
|
||||
"git"
|
||||
"password-store"
|
||||
"node"
|
||||
"git-lfs"))
|
||||
(list my-neovim wl-mirror firefox-wayland-new)))
|
||||
|
|
|
@ -119,7 +119,6 @@ bind = $mainMod, Return, exec, alacritty
|
|||
bind = $mainMod SHIFT, Q, killactive
|
||||
bind = $mainMod SHIFT, E, exit
|
||||
bind = $mainMod SHIFT, Space, togglefloating
|
||||
bind = $mainMod SHIFT, Return, pin, active
|
||||
bind = $mainMod, D, exec, fuzzel --width=35 --font='Hack:weight=bold:size=12' --background-color='282a36fa' --selection-color='3d4460fa' --line-height=20 --border-radius=20
|
||||
bind = $mainMod, P, pseudo, # dwindle
|
||||
bind = $mainMod, J, togglesplit, # dwindle
|
||||
|
@ -215,9 +214,6 @@ windowrulev2 = nofullscreenrequest, class:^(firefox)$, title:^(Firefox — Shari
|
|||
windowrulev2 = float,class:^(ala-wttr)$
|
||||
windowrulev2 = size 740 712, class:^(ala-wttr)$
|
||||
|
||||
# Change color of pinned windows
|
||||
windowrulev2 = bordercolor rgba(bf0000ee) rgba(ab00adee) 45deg,pinned:1
|
||||
|
||||
exec-once = ~/.config/hypr/autostart.sh
|
||||
|
||||
misc {
|
||||
|
|
|
@ -28,7 +28,8 @@
|
|||
# # "Hello, world!" when run.
|
||||
# pkgs.hello
|
||||
yt-dlp
|
||||
#pass
|
||||
xdg-desktop-portal-hyprland
|
||||
pass
|
||||
rustup
|
||||
gcc
|
||||
pkg-config
|
||||
|
|
|
@ -1,63 +0,0 @@
|
|||
(define-module (ryan-packages web-server)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix build-system go)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (gnu packages golang)
|
||||
#:use-module (guix utils))
|
||||
|
||||
(define-public go-github-com-caddy-certmagic
|
||||
(package
|
||||
(name "certmagic")
|
||||
(version "0.19.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/caddyserver/certmagic")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0jgbkj0azkbs828vsd3gycpab8pycgf55vrxkvnfmwfjpdiq1551"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:go go-1.20
|
||||
#:import-path "github.com/caddyserver/certmagic"))
|
||||
(home-page "https://github.com/caddyserver/certmagic")
|
||||
(synopsis "Certbot ACME")
|
||||
(description "Automagic certificate management in Caddy")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public caddy
|
||||
(package
|
||||
(name "Caddy")
|
||||
(version "2.7.4")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/caddyserver/caddy")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0jgbkj0azkbs828vsd3gycpab8pycgf55vrxkvnfmwfjpdiq1551"))))
|
||||
(build-system go-build-system)
|
||||
(native-inputs (list go-github-com-google-uuid
|
||||
go-go-uber-org-zap
|
||||
go-github-com-caddy-certmagic
|
||||
go-github-com-prometheus-client-golang
|
||||
go-golang-org-x-term
|
||||
go-golang-org-x-sys))
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:go go-1.20
|
||||
;#:unpack-path "github.com/caddyserver/caddy"
|
||||
#:import-path "github.com/caddyserver/caddy"))
|
||||
(home-page "https://github.com/caddyserver/caddy")
|
||||
(synopsis "Web server")
|
||||
(description "This package serves the web")
|
||||
(license license:expat)))
|
||||
|
||||
caddy
|
Loading…
Reference in a new issue