diff options
author | Marc Coquand <marc@coquand.email> | 2024-12-14 14:12:16 +0200 |
---|---|---|
committer | Marc Coquand <marc@coquand.email> | 2024-12-14 14:12:16 +0200 |
commit | 9f90c15f68bbcd9df91fcefe9898219b47f4c497 (patch) | |
tree | b3d508d408573ac4904418816516787297d7c0d4 /home/dots/.config | |
parent | 370cddc46a875eac77d8f7af4915ec4f54e777f2 (diff) | |
download | guix-9f90c15f68bbcd9df91fcefe9898219b47f4c497.tar.gz guix-9f90c15f68bbcd9df91fcefe9898219b47f4c497.tar.bz2 guix-9f90c15f68bbcd9df91fcefe9898219b47f4c497.zip |
.
Diffstat (limited to 'home/dots/.config')
-rw-r--r-- | home/dots/.config/guix/channels.scm | 31 | ||||
-rw-r--r-- | home/dots/.config/kmonad.config | 6 |
2 files changed, 25 insertions, 12 deletions
diff --git a/home/dots/.config/guix/channels.scm b/home/dots/.config/guix/channels.scm index b097635..5363fb8 100644 --- a/home/dots/.config/guix/channels.scm +++ b/home/dots/.config/guix/channels.scm @@ -1,10 +1,21 @@ -(cons* (channel - (name 'nonguix) - (url "https://gitlab.com/nonguix/nonguix") - ;; Enable signature verification: - (introduction - (make-channel-introduction - "897c1a470da759236cc11798f4e0a5f7d4d59fbc" - (openpgp-fingerprint - "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) - %default-channels) +(cons* + (channel + (name 'sops-guix) + (url "https://github.com/fishinthecalculator/sops-guix") + (branch "main") + ;; Enable signature verification: + (introduction + (make-channel-introduction + "0bbaf1fdd25266c7df790f65640aaa01e6d2dbc9" + (openpgp-fingerprint + "8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2")))) + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + ;; Enable signature verification: + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + %default-channels) diff --git a/home/dots/.config/kmonad.config b/home/dots/.config/kmonad.config index d040c75..36ae331 100644 --- a/home/dots/.config/kmonad.config +++ b/home/dots/.config/kmonad.config @@ -9,7 +9,7 @@ allow-cmd true ) -(defsrc caps lalt rmet) +(defsrc caps lalt rmet ralt) ;; (defalias ;; ctl-lck (stepped @@ -20,10 +20,12 @@ slc (sticky-key 700 lctl) slm (sticky-key 700 lmet) sla (sticky-key 700 lalt) + sra (sticky-key 700 ralt) slf (sticky-key 700 lsft) srf (sticky-key 700 rsft)) (deflayer mine @slc @sla - (sticky-key 700 rmet)) + (sticky-key 700 rmet) + @sra) |