diff options
Diffstat (limited to 'px/system/config/pxconfig')
-rw-r--r-- | px/system/config/pxconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/px/system/config/pxconfig b/px/system/config/pxconfig new file mode 100644 index 0000000..f30b93b --- /dev/null +++ b/px/system/config/pxconfig @@ -0,0 +1,11 @@ + +(define-module (pxconfig) + #:export (username comment groupname timezone locale hostname) + #:declarative? #f) + +(define username "panther") +(define comment "-") +(define groupname "users") +(define hostname "my-computer.local") +(define timezone "Europe/Berlin") +(define locale "en_US.UTF-8") |