face file service broken - what even are hashes
This commit is contained in:
parent
d4d83632b6
commit
96c07bbdd5
@ -8,6 +8,8 @@
|
|||||||
(gnu packages)
|
(gnu packages)
|
||||||
(gnu packages emacs)
|
(gnu packages emacs)
|
||||||
(gnu packages vim)
|
(gnu packages vim)
|
||||||
|
(gnu packages version-control)
|
||||||
|
(gnu packages terminals)
|
||||||
(gnu services)
|
(gnu services)
|
||||||
(guix gexp)
|
(guix gexp)
|
||||||
(guix store)
|
(guix store)
|
||||||
@ -30,6 +32,8 @@
|
|||||||
;; Home profile, under ~/.guix-home/profile.
|
;; Home profile, under ~/.guix-home/profile.
|
||||||
(packages (list
|
(packages (list
|
||||||
emacs
|
emacs
|
||||||
|
git
|
||||||
|
kitty
|
||||||
neovim))
|
neovim))
|
||||||
|
|
||||||
;; Below is the list of Home services. To search for available
|
;; Below is the list of Home services. To search for available
|
||||||
@ -40,12 +44,21 @@
|
|||||||
home-files-service-type
|
home-files-service-type
|
||||||
`(
|
`(
|
||||||
(".face" ,(file-fetch
|
(".face" ,(file-fetch
|
||||||
"https://marq42.xyz/mir-avatar-picrew.png"
|
"https://marq42.xyz/mir-avatar-picrew-3.png"
|
||||||
"yc8TjdLXswliHmzUxYQ3MYB+UXHuVmp8+0bECEspLrU="
|
"cf5ck8db4d5n24drdnv77wx1liiqi6an"
|
||||||
))))
|
))))
|
||||||
(service home-dconf-load-service-type
|
(service home-dconf-load-service-type
|
||||||
#~`((org/gnome/shell
|
#~`((org/gnome/shell
|
||||||
(disable-user-extensions #f))
|
(disable-user-extensions #f)
|
||||||
|
(favorite-apps #(
|
||||||
|
"kitty.desktop"
|
||||||
|
"firefox.desktop"
|
||||||
|
"emacs.desktop"
|
||||||
|
"org.gnome.Settings.desktop"
|
||||||
|
"org.gnome.Nautilus.desktop"
|
||||||
|
"btop.desktop"))
|
||||||
|
)
|
||||||
|
|
||||||
(org/gnome/desktop/interface
|
(org/gnome/desktop/interface
|
||||||
(color-scheme "prefer-dark"))
|
(color-scheme "prefer-dark"))
|
||||||
(org/gnome/mutter
|
(org/gnome/mutter
|
||||||
@ -62,7 +75,9 @@
|
|||||||
(org/gnome/desktop/interface
|
(org/gnome/desktop/interface
|
||||||
(show-battery-percentage #t))
|
(show-battery-percentage #t))
|
||||||
(org/gnome/desktop/session
|
(org/gnome/desktop/session
|
||||||
(idle-delay ,(* uint32 0)))
|
(idle-delay "uint32 0")
|
||||||
|
;(idle-delay ,(int32->uint32 0))
|
||||||
|
)
|
||||||
(org/gnome/desktop/background
|
(org/gnome/desktop/background
|
||||||
(picture-uri-dark
|
(picture-uri-dark
|
||||||
#$(file-fetch "https://www.teahub.io/photos/full/154-1542362_mac-os-mojave-screenshot.jpg"
|
#$(file-fetch "https://www.teahub.io/photos/full/154-1542362_mac-os-mojave-screenshot.jpg"
|
||||||
@ -70,7 +85,8 @@
|
|||||||
"avrKrso2RJBM0X9BD8likF/7wV0SWMNgoLqtqAixLG8="
|
"avrKrso2RJBM0X9BD8likF/7wV0SWMNgoLqtqAixLG8="
|
||||||
)))
|
)))
|
||||||
(org/gnome/desktop/peripherals/touchpad
|
(org/gnome/desktop/peripherals/touchpad
|
||||||
(tap-to-click #t))))
|
(tap-to-click #t)))) ; end gnome stuff
|
||||||
|
;; shell
|
||||||
(service home-bash-service-type
|
(service home-bash-service-type
|
||||||
(home-bash-configuration
|
(home-bash-configuration
|
||||||
(bash-profile (list (plain-file
|
(bash-profile (list (plain-file
|
||||||
|
Loading…
Reference in New Issue
Block a user