Compare commits
2 commits
10c71dfa65
...
b93fadc4a6
Author | SHA1 | Date | |
---|---|---|---|
Ryan Schanzenbacher | b93fadc4a6 | ||
Ryan Schanzenbacher | 526850ff3c |
|
@ -94,6 +94,7 @@
|
||||||
"tcpdump"
|
"tcpdump"
|
||||||
"pamixer"
|
"pamixer"
|
||||||
"git"
|
"git"
|
||||||
|
"password-store"
|
||||||
"node"
|
"node"
|
||||||
"git-lfs"))
|
"git-lfs"))
|
||||||
(list my-neovim wl-mirror firefox-wayland-new)))
|
(list my-neovim wl-mirror firefox-wayland-new)))
|
||||||
|
|
|
@ -119,6 +119,7 @@ bind = $mainMod, Return, exec, alacritty
|
||||||
bind = $mainMod SHIFT, Q, killactive
|
bind = $mainMod SHIFT, Q, killactive
|
||||||
bind = $mainMod SHIFT, E, exit
|
bind = $mainMod SHIFT, E, exit
|
||||||
bind = $mainMod SHIFT, Space, togglefloating
|
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, 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, P, pseudo, # dwindle
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
|
@ -214,6 +215,9 @@ windowrulev2 = nofullscreenrequest, class:^(firefox)$, title:^(Firefox — Shari
|
||||||
windowrulev2 = float,class:^(ala-wttr)$
|
windowrulev2 = float,class:^(ala-wttr)$
|
||||||
windowrulev2 = size 740 712, 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
|
exec-once = ~/.config/hypr/autostart.sh
|
||||||
|
|
||||||
misc {
|
misc {
|
||||||
|
|
|
@ -28,8 +28,7 @@
|
||||||
# # "Hello, world!" when run.
|
# # "Hello, world!" when run.
|
||||||
# pkgs.hello
|
# pkgs.hello
|
||||||
yt-dlp
|
yt-dlp
|
||||||
xdg-desktop-portal-hyprland
|
#pass
|
||||||
pass
|
|
||||||
rustup
|
rustup
|
||||||
gcc
|
gcc
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
63
modules/ryan-packages/web-server.scm
Normal file
63
modules/ryan-packages/web-server.scm
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
(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