From 807a30cabc6a48793093ad4cd5887719292f029a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 4 Mar 2022 14:57:06 +0000 Subject: [PATCH] add start of config --- guix/home-configuration.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 guix/home-configuration.scm diff --git a/guix/home-configuration.scm b/guix/home-configuration.scm new file mode 100644 index 00000000..0e917b5c --- /dev/null +++ b/guix/home-configuration.scm @@ -0,0 +1,34 @@ +;; This "home-environment" file can be passed to 'guix home reconfigure' +;; to reproduce the content of your profile. This is "symbolic": it only +;; specifies package names. To reproduce the exact same profile, you also +;; need to capture the channels being used, as returned by "guix describe". +;; See the "Replicating Guix" section in the manual. + +(use-modules + (gnu home) + (gnu packages) + (gnu services) + (guix gexp) + (gnu home services shells) + (gnu home) + (gnu home services) + (gnu home services shells) + (gnu home-services version-control) + + ) + +(home-environment + (packages + (map (compose list specification->package+output) + (list))) + (services + (list (service home-bash-service-type) + + + (service home-git-service-type + (home-git-configuration + (config + `((user + ((name . "Cyryl PÅ‚otnicki") + (email . "cyplo@cyplo.dev") + )))))))))