Move syncthing service to system config
Apparently home-syncthing-service-type is busted...
This commit is contained in:
parent
3e6470d00b
commit
c2d4d6f864
2 changed files with 19 additions and 16 deletions
|
@ -12,18 +12,18 @@
|
|||
|
||||
(define cataclysm-dda-xdg
|
||||
(package
|
||||
(inherit cataclysm-dda)
|
||||
(name "cataclysm-dda-xdg")
|
||||
(arguments
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
"USE_XDG_DIR=1" "DYNAMIC_LINKING=1" "RELEASE=1"
|
||||
"LOCALIZE=1" "LANGUAGES=all")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:tests? #f))))
|
||||
(inherit cataclysm-dda)
|
||||
(name "cataclysm-dda-xdg")
|
||||
(arguments
|
||||
(list
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
"USE_XDG_DIR=1" "DYNAMIC_LINKING=1" "RELEASE=1"
|
||||
"LOCALIZE=1" "LANGUAGES=all")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:tests? #f))))
|
||||
|
||||
(home-environment
|
||||
;; Below is the list of packages that will show up in your
|
||||
|
@ -133,5 +133,4 @@
|
|||
("waybar" ,(local-file "./waybar" #:recursive? #t))
|
||||
("kitty/kitty.conf" ,(local-file "./kitty.conf"))
|
||||
("fish" ,(local-file "./fish" #:recursive? #t))
|
||||
("rofi/config.rasi" ,(local-file "./rofi"))))
|
||||
(service home-syncthing-service-type))))
|
||||
("rofi/config.rasi" ,(local-file "./rofi")))))))
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
(nongnu packages linux)
|
||||
(gnu packages shells)
|
||||
(gnu packages cups))
|
||||
(use-service-modules cups desktop networking ssh xorg audio)
|
||||
(use-service-modules audio cups desktop networking ssh syncthing xorg)
|
||||
|
||||
(operating-system
|
||||
(kernel linux)
|
||||
|
@ -54,7 +54,11 @@
|
|||
(web-interface? #t)
|
||||
(extensions
|
||||
(list brlaser cups-filters epson-inkjet-printer-escpr
|
||||
foomatic-filters hplip splix)))))
|
||||
foomatic-filters hplip splix))))
|
||||
(service syncthing-service-type
|
||||
(syncthing-configuration
|
||||
(user "skylar")
|
||||
(home "/home/skylar"))))
|
||||
|
||||
;; This is the default list of services we
|
||||
;; are appending to.
|
||||
|
|
Loading…
Reference in a new issue