Compare commits
3 commits
641f4d3631
...
aa02cb8de1
Author | SHA1 | Date | |
---|---|---|---|
aa02cb8de1 | |||
7f4158762f | |||
61ac1b0217 |
4 changed files with 12 additions and 5 deletions
|
@ -3,7 +3,7 @@
|
||||||
(url "https://git.savannah.gnu.org/git/guix.git")
|
(url "https://git.savannah.gnu.org/git/guix.git")
|
||||||
(branch "master")
|
(branch "master")
|
||||||
(commit
|
(commit
|
||||||
"808c02c01e87d6ded18492372543108e1f9154a9")
|
"4009d1de954d694cb11af391d4113d29c5c1379d")
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"9edb3f66fd807b096b48283debdcddccfea34bad"
|
"9edb3f66fd807b096b48283debdcddccfea34bad"
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
(url "https://g.freya.cat/freya/sakura")
|
(url "https://g.freya.cat/freya/sakura")
|
||||||
(branch "main")
|
(branch "main")
|
||||||
(commit
|
(commit
|
||||||
"17247cc3edc9a90acd8a30ed2f967ddaed7dd06e")
|
"0601aa4f570e0f8d986c67de7c57572f935e7387")
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"8fb2f9c2fa414754c41c1c73665e3e73e12693ab"
|
"8fb2f9c2fa414754c41c1c73665e3e73e12693ab"
|
||||||
|
|
|
@ -11,7 +11,6 @@ require('mason-lspconfig').setup({
|
||||||
'pyright',
|
'pyright',
|
||||||
'vimls',
|
'vimls',
|
||||||
'yamlls',
|
'yamlls',
|
||||||
'jdtls',
|
|
||||||
'bashls',
|
'bashls',
|
||||||
'lua_ls',
|
'lua_ls',
|
||||||
},
|
},
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
"cage"
|
"cage"
|
||||||
"libnotify"
|
"libnotify"
|
||||||
"waybar"
|
"waybar"
|
||||||
|
"network-manager-applet"
|
||||||
|
|
||||||
; xdg
|
; xdg
|
||||||
"xdg-desktop-portal-wlr"
|
"xdg-desktop-portal-wlr"
|
||||||
|
@ -115,7 +116,7 @@
|
||||||
; utilities
|
; utilities
|
||||||
"qbittorrent"
|
"qbittorrent"
|
||||||
"syncthing"
|
"syncthing"
|
||||||
"wine-staging"
|
"wine64"
|
||||||
"winetricks"))
|
"winetricks"))
|
||||||
|
|
||||||
(list ; system
|
(list ; system
|
||||||
|
|
|
@ -276,7 +276,14 @@
|
||||||
(fast-connectable? #t)))
|
(fast-connectable? #t)))
|
||||||
; yubikey
|
; yubikey
|
||||||
(service pcscd-service-type)
|
(service pcscd-service-type)
|
||||||
(udev-rules-service 'fido2 libfido2 #:groups '("plugdev")))
|
(udev-rules-service 'fido2 libfido2 #:groups '("plugdev"))
|
||||||
|
; ld linux
|
||||||
|
(simple-service 'ld-service-type activation-service-type
|
||||||
|
#~(begin
|
||||||
|
(system* "mkdir" "-p" "/lib64")
|
||||||
|
(system* "ln" "-s"
|
||||||
|
(string-append #$glibc "/lib/ld-linux-x86-64.so.2")
|
||||||
|
"/lib64/ld-linux-x86-64.so.2"))))
|
||||||
;; append freya base services
|
;; append freya base services
|
||||||
%base-freya-services))
|
%base-freya-services))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue