- Timestamp:
- Dec 16, 2024, 6:04:55 AM (5 weeks ago)
- Branches:
- master
- Children:
- 677da09
- Parents:
- 9bc0481
- Location:
- guix
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/.dotfiles/.bash_profile
r9bc0481 reb58262 21 21 # Honor per-interactive-shell startup file 22 22 if [ -f ~/.bashrc ]; then source ~/.bashrc; fi 23 24 gpg-connect-agent updatestartuptty /bye -
guix/.dotfiles/.bashrc
r9bc0481 reb58262 8 8 export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" 9 9 fi 10 11 gpg-connect-agent updatestartuptty /bye -
guix/.dotfiles/home-configuration.scm
r9bc0481 reb58262 249 249 (home-gpg-agent-configuration 250 250 (pinentry-program 251 (file-append pinentry -emacs "/bin/pinentry-emacs"))251 (file-append pinentry "/bin/pinentry")) 252 252 (extra-content "enable-ssh-support") 253 253 (ssh-support? #t))) -
guix/config-desktop.scm
r9bc0481 reb58262 178 178 (program (file-append xlockmore "/bin/xlock")))) 179 179 180 (service qemu-binfmt-service-type 181 (qemu-binfmt-configuration 182 (platforms (lookup-qemu-platforms "aarch64")))) 183 184 ;; (service virtual-build-machine-service-type 185 ;; (virtual-build-machine 186 ;; (qemu "qemu") 187 ;; (cpu-count 8) 188 ;; (memory-size (* 1 8096)) 189 ;; (systems (list ("aarch64-linux"))) 190 ;; (auto-start? #t))) 191 180 192 (extra-special-file "/etc/qemu/host.conf" "allow br0\n") 181 193 (service spice-vdagent-service-type)) … … 194 206 195 207 196 ;; (guix-service-type config => (guix-configuration 197 ;; (inherit config) 198 ;; (extra-options '("--max-jobs=10")) 199 ;; ;; (http-proxy "http://localhost:9250") 200 ;; )) 208 (guix-service-type config => (guix-configuration 209 (inherit config) 210 (authorized-keys (append (list 211 "(public-key 212 (ecc 213 (curve Ed25519) 214 (q #784779217C0B279976C1F69C514797B26EB927EA9D0E9DE95B92983D37DF13B8#) 215 ) 216 ) 217 " 218 219 ;; nonguix 220 ;; "(public-key 221 ;; (ecc 222 ;; (curve Ed25519) 223 ;; (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#) 224 ;; ) 225 ;; )" 226 ) %default-authorized-guix-keys)) 227 ;; (substitute-urls 228 ;; (append (list "https://substitutes.nonguix.org") 229 ;; %default-substitute-urls)) 230 ;; (extra-options '("--max-jobs=10")) 231 ;; (http-proxy "http://localhost:9250") 232 )) 201 233 202 234 (delete gdm-service-type))
Note:
See TracChangeset
for help on using the changeset viewer.