diff options
| author | Freya Murphy <fmurphy@redcom.com> | 2026-03-10 18:24:07 -0400 |
|---|---|---|
| committer | Freya Murphy <fmurphy@redcom.com> | 2026-03-10 18:24:07 -0400 |
| commit | 15a648192e29b096efdf4ef94ac846024fb51255 (patch) | |
| tree | 03d7e75a8a25991c3c08a0bef2d3d1b53493b949 /hosts | |
| parent | update commits (diff) | |
| download | dotfiles-nix-15a648192e29b096efdf4ef94ac846024fb51255.tar.gz dotfiles-nix-15a648192e29b096efdf4ef94ac846024fb51255.tar.bz2 dotfiles-nix-15a648192e29b096efdf4ef94ac846024fb51255.zip | |
update stuff for work
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/work/default.nix | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/hosts/work/default.nix b/hosts/work/default.nix index 03ad03a..a626c7f 100644 --- a/hosts/work/default.nix +++ b/hosts/work/default.nix @@ -1,21 +1,14 @@ # Work # System configuration for work vm -{ - lib, - pkgs, - ... -}: { +{lib, ...}: { # options hostName = "work"; user = "fmurphy"; + email = "fmurphy@redcom.com"; minimal = true; # packages extraHome = { - home.packages = with pkgs; [ - arcanist - ]; - programs.git = { signing.signByDefault = lib.mkForce false; }; |