From: Jakub Czajka Date: Sat, 28 May 2022 16:25:31 +0000 (+0200) Subject: [home] Initialize configuration. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=256fb76ed6b9bdf79f265cd3073bae85175c7111;p=guix.git [home] Initialize configuration. This commit adds a basic home directory configuration which returns an empty home-environment object. --- diff --git a/README b/README index ce65c5c..17b9467 100644 --- a/README +++ b/README @@ -2,3 +2,8 @@ guix ==== System and home directory configuration for the GNU Guix operating system. + +Files +----- + +* home.scm - home directory configuration for the GNU Guix operating system. diff --git a/home.scm b/home.scm new file mode 100644 index 0000000..8eab708 --- /dev/null +++ b/home.scm @@ -0,0 +1,8 @@ +;; Copyright (c) 2022 Jakub Czajka +;; License: GPL-3.0 or later. +;; +;; home.scm - home directory configuration for GNU Guix. + +(use-modules (gnu home)) + +(home-environment)