]> git.ekhem.eu.org Git - guix.git/commitdiff
[home] Initialize configuration.
authorJakub Czajka <jakub@ekhem.eu.org>
Sat, 28 May 2022 16:25:31 +0000 (18:25 +0200)
committerJakub Czajka <jczajka@google.com>
Sun, 24 Dec 2023 18:53:07 +0000 (19:53 +0100)
This commit adds a basic home directory configuration which returns an
empty home-environment object.

README
home.scm [new file with mode: 0644]

diff --git a/README b/README
index ce65c5c72f71b9f9c470ba8b26dc6e07d96cc1b6..17b94674d5acb58b956bda8fd69910bdec0deeaa 100644 (file)
--- 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 (file)
index 0000000..8eab708
--- /dev/null
+++ b/home.scm
@@ -0,0 +1,8 @@
+;; Copyright (c) 2022 Jakub Czajka <jakub@ekhem.eu.org>
+;; License: GPL-3.0 or later.
+;;
+;; home.scm - home directory configuration for GNU Guix.
+
+(use-modules (gnu home))
+
+(home-environment)