From 256fb76ed6b9bdf79f265cd3073bae85175c7111 Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Sat, 28 May 2022 18:25:31 +0200 Subject: [PATCH] [home] Initialize configuration. This commit adds a basic home directory configuration which returns an empty home-environment object. --- README | 5 +++++ home.scm | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 home.scm 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) -- 2.39.5