;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2023 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu home services syncthing) #:use-module (gnu services) #:use-module (gnu home services) #:use-module (gnu services syncthing) ;; For the 'home-shepherd-service-type' mapping. #:use-module (gnu home services shepherd) #:export (home-syncthing-service-type) #:re-export (syncthing-configuration syncthing-configuration?)) (define home-syncthing-service-type (service-type (inherit (system->home-service-type syncthing-service-type)) (default-value (for-home (syncthing-configuration))))) lders.scm?id=6d508ef6905a17d269fe53532dd5009fff77ffb6'>treecommitdiff
s?id=c8112f3bd95269ce4aca12dedbfe61bb6b37acae'>system: images: Add wsl2 module....
AgeCommit message (Collapse)Author
2023-09-26git-download: Use “builtin:git-download” when available.Ludovic Courtès
Fixes <https://issues.guix.gnu.org/63331>. Longer-term this will remove Git from the derivation graph when its sole use is to perform a checkout for a fixed-output derivation, thereby breaking dependency cycles that can arise in these situations. * guix/git-download.scm (git-fetch): Rename to… (git-fetch/in-band): … this. Deal with GIT or GUILE being #f. (git-fetch/built-in, built-in-builders*, git-fetch): New procedures. * tests/builders.scm ("git-fetch, file URI"): New test.
Alex Griffin
2022-09-24platforms: x86: Rename Hurd hurd to i586-gnu....Mathieu Othacehe
2022-09-24image: Make the operating-system field mandatory....Mathieu Othacehe
2022-09-07system: images: Define the platform in image-types....Mathieu Othacehe
2022-05-25images: hurd: Adjust module imports....Efraim Flashner
2022-05-25Move (gnu platform) and (gnu platforms ...) to guix/....Josselin Poiret
2022-03-15images: novena: Fix build....Mathieu Othacehe