summaryrefslogtreecommitdiff
path: root/lib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/default.nix b/lib/default.nix
index ae838af..67d1cba 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -3,4 +3,39 @@
files = callLibs ./files.nix;
in {
inherit (files) getFiles certs sshKeys gpgKeys;
+
+ customConfig = config: {
+ inherit
+ (config)
+ # System Information
+ hostName
+ timeZone
+ stateVersion
+ # System Modules
+ battery
+ bluetooth
+ fingerprint
+ network
+ tpm
+ minimal
+ # Primary User
+ user
+ fullName
+ email
+ homePath
+ dotfilesPath
+ # Monitors
+ monitors
+ # Theme
+ theme
+ # Programs
+ apps
+ browsers
+ desktops
+ gaming
+ development
+ virt
+ autoRun
+ ;
+ };
}