;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2021 Xinglu Chen ;;; Copyright © 2022 Arjan Adriaanse ;;; ;;; 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 (test-home-import) #:use-module (guix scripts home import) #:use-module (guix utils) #:use-module (guix build utils) #:use-module (guix packages) #:use-module (ice-9 match) #:use-module ((guix rea
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2024-09-08 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2024-09-08 02:00:00 +0200
commitff7bba8baa293865b92316824e1ae1c3b04db97c (patch)
treebba7f891668136e5d98300bf5d0cd2cd4d8da493 /gnu/packages/fcitx5.scm
parent4c99ef43f09d541890c5b6a7bd1e3207597bae75 (diff)
downloadguix-ff7bba8baa293865b92316824e1ae1c3b04db97c.tar.gz
guix-ff7bba8baa293865b92316824e1ae1c3b04db97c.zip
.guix-authorizations: Authorise Artyom V. Poptsov's key.
* .guix-authorizations (avp): Register PGP key fingerprint. Voucher: Andrew Tropin <andrew@trop.in> Voucher: Ludovic Courtès <ludo@gnu.org> Voucher: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: Id6f1d4042daad3708000b9b63064fbf7ad31f2d8
Diffstat (limited to 'gnu/packages/fcitx5.scm')
0 files changed, 0 insertions, 0 deletions
ons)) (test-assert "manifest->code: No packages nor services" (eval-test-with-home-environment '() (make-manifest '()) match-home-environment-no-services-nor-packages)) (test-assert "manifest->code: Bash service" (eval-test-with-home-environment '((".bashrc" . "echo 'hello guix'")) (make-manifest '()) match-home-environment-bash-service)) (test-assert "manifest->code: Bash service with aliases" (eval-test-with-home-environment '((".bashrc" . "# Aliases alias ls=\"ls -p\"; alias grep='grep --exclude-from=\"$HOME/.grep-exclude\"'\n")) (make-manifest '()) match-home-environment-bash-service-with-alias)) (test-end "home-import")