diff options
author | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 08:49:39 -0400 |
---|---|---|
committer | Freya Murphy <fmurphy@redcom.com> | 2025-09-18 20:37:46 -0400 |
commit | 0267d0db393b7515d694d3a29997fb7be251872e (patch) | |
tree | 8cda5e9203b427d192dfd045c8315c9d273ce57b /lib/default.nix | |
parent | hosts: add work vm (diff) | |
download | dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.gz dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.tar.bz2 dotfiles-nix-0267d0db393b7515d694d3a29997fb7be251872e.zip |
mirror baseline system packages into home
Diffstat (limited to 'lib/default.nix')
-rw-r--r-- | lib/default.nix | 72 |
1 files changed, 38 insertions, 34 deletions
diff --git a/lib/default.nix b/lib/default.nix index 2da5bd9..62efd3f 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -4,38 +4,42 @@ in { inherit (files) getFiles certs sshKeys gpgKeys; - homeConfig = 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 - ; - } // config.extraHome; + homeConfig = 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 + # Packages + extraPackages + ; + } + // config.extraHome; } |