Changeset eb58262 in dotfiles for guix


Ignore:
Timestamp:
Dec 16, 2024, 6:04:55 AM (5 weeks ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
677da09
Parents:
9bc0481
Message:

Update guix config

Location:
guix
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • guix/.dotfiles/.bash_profile

    r9bc0481 reb58262  
    2121# Honor per-interactive-shell startup file
    2222if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
    23 
    24 gpg-connect-agent updatestartuptty /bye
  • guix/.dotfiles/.bashrc

    r9bc0481 reb58262  
    88export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
    99fi
     10
     11gpg-connect-agent updatestartuptty /bye
  • guix/.dotfiles/home-configuration.scm

    r9bc0481 reb58262  
    249249                             (home-gpg-agent-configuration
    250250                              (pinentry-program
    251                                (file-append pinentry-emacs "/bin/pinentry-emacs"))
     251                               (file-append pinentry "/bin/pinentry"))
    252252                              (extra-content "enable-ssh-support")
    253253                              (ssh-support? #t)))
  • guix/config-desktop.scm

    r9bc0481 reb58262  
    178178             (program (file-append xlockmore "/bin/xlock"))))
    179179
     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
    180192           (extra-special-file "/etc/qemu/host.conf" "allow br0\n")
    181193           (service spice-vdagent-service-type))
     
    194206                           
    195207                           
    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                                                         ))
    201233                           
    202234                           (delete gdm-service-type))
Note: See TracChangeset for help on using the changeset viewer.