diff options
| -rwxr-xr-x | home-config/hypr/autostart.sh | 6 | ||||
| -rw-r--r-- | home-config/hypr/hyprland.conf | 3 | ||||
| -rw-r--r-- | modules/ryan-config/base-system.scm | 6 |
3 files changed, 14 insertions, 1 deletions
diff --git a/home-config/hypr/autostart.sh b/home-config/hypr/autostart.sh index ed66fff..4881fd9 100755 --- a/home-config/hypr/autostart.sh +++ b/home-config/hypr/autostart.sh | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
| 2 | 2 | ||
| 3 | hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP & | ||
| 4 | |||
| 3 | waybar & | 5 | waybar & |
| 4 | 6 | ||
| 5 | mako & | 7 | mako & |
| @@ -7,3 +9,7 @@ mako & | |||
| 7 | swaybg -i ~/.config/hypr/Wallpapers/mountains.jpg & | 9 | swaybg -i ~/.config/hypr/Wallpapers/mountains.jpg & |
| 8 | 10 | ||
| 9 | swayidle -w timeout 300 'swaylock --screenshots --clock --indicator --grace 3 --fade-in 1 --effect-blur 7x5 --effect-greyscale' timeout 600 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f -c 000000' & | 11 | swayidle -w timeout 300 'swaylock --screenshots --clock --indicator --grace 3 --fade-in 1 --effect-blur 7x5 --effect-greyscale' timeout 600 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f -c 000000' & |
| 12 | |||
| 13 | syncthing serve --no-browser & | ||
| 14 | |||
| 15 | blueman-applet & | ||
diff --git a/home-config/hypr/hyprland.conf b/home-config/hypr/hyprland.conf index 5df73de..2c23c63 100644 --- a/home-config/hypr/hyprland.conf +++ b/home-config/hypr/hyprland.conf | |||
| @@ -119,7 +119,8 @@ bind = $mainMod SHIFT, Space, togglefloating | |||
| 119 | 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 | 119 | 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 |
| 120 | bind = $mainMod, P, pseudo, # dwindle | 120 | bind = $mainMod, P, pseudo, # dwindle |
| 121 | bind = $mainMod, J, togglesplit, # dwindle | 121 | bind = $mainMod, J, togglesplit, # dwindle |
| 122 | bind = $mainMod, F, fullscreen | 122 | bind = $mainMod, F, fullscreen, 1 |
| 123 | bind = $mainMod SHIFT, F, fullscreen | ||
| 123 | bind = ,XF86MonBrightnessUp, exec, light -A 10 | 124 | bind = ,XF86MonBrightnessUp, exec, light -A 10 |
| 124 | bind = ,XF86MonBrightnessDown, exec, light -U 10 | 125 | bind = ,XF86MonBrightnessDown, exec, light -U 10 |
| 125 | 126 | ||
diff --git a/modules/ryan-config/base-system.scm b/modules/ryan-config/base-system.scm index 9273e17..127f57c 100644 --- a/modules/ryan-config/base-system.scm +++ b/modules/ryan-config/base-system.scm | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | #:use-module (nongnu packages linux) | 3 | #:use-module (nongnu packages linux) |
| 4 | #:use-module (gnu system setuid) | 4 | #:use-module (gnu system setuid) |
| 5 | #:use-module (gnu packages admin) | 5 | #:use-module (gnu packages admin) |
| 6 | #:use-module (gnu packages firmware) | ||
| 6 | #:use-module (guix packages) | 7 | #:use-module (guix packages) |
| 7 | #:use-module (gnu packages shells) | 8 | #:use-module (gnu packages shells) |
| 8 | #:use-module (guix build-system trivial) | 9 | #:use-module (guix build-system trivial) |
| @@ -138,6 +139,7 @@ | |||
| 138 | "docker" | 139 | "docker" |
| 139 | "libvirt" | 140 | "libvirt" |
| 140 | "virt-manager" | 141 | "virt-manager" |
| 142 | "ovmf" | ||
| 141 | "wireplumber" | 143 | "wireplumber" |
| 142 | "wireshark" | 144 | "wireshark" |
| 143 | "zsh")) | 145 | "zsh")) |
| @@ -160,6 +162,10 @@ | |||
| 160 | (unix-sock-group "libvirt"))) | 162 | (unix-sock-group "libvirt"))) |
| 161 | (service virtlog-service-type) | 163 | (service virtlog-service-type) |
| 162 | (service bluetooth-service-type) | 164 | (service bluetooth-service-type) |
| 165 | (extra-special-file "/usr/share/OVMF/OVMF_CODE.fd" | ||
| 166 | (file-append ovmf "/share/firmware/ovmf_x64.bin")) | ||
| 167 | (extra-special-file "/usr/share/OVMF/OVMF_VARS.fd" | ||
| 168 | (file-append ovmf "/share/firmware/ovmf_vars.fd")) | ||
| 163 | (udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))) | 169 | (udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))) |
| 164 | 170 | ||
| 165 | ;; This is the default list of services we | 171 | ;; This is the default list of services we |
