diff options
author | Griffin Smith <root@gws.fyi> | 2023-05-15T14·08-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-15T14·12+0000 |
commit | bb4d80797404d77a28a5eebe6c379285264b8c2d (patch) | |
tree | ffb61d77724a2c22a0ff6351fdb013869120a0cb | |
parent | a538939b3e01300264f93a22515546b71f25e3d1 (diff) |
feat(grfn/system): Install dropbox on all systems r/6142
Change-Id: I35aaf174c7193c6fa6610989d8334ceabcdb6ced Reviewed-on: https://cl.tvl.fyi/c/depot/+/8575 Autosubmit: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
-rw-r--r-- | users/grfn/system/home/modules/common.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/users/grfn/system/home/modules/common.nix b/users/grfn/system/home/modules/common.nix index ab0a2d925d2c..7714644841ba 100644 --- a/users/grfn/system/home/modules/common.nix +++ b/users/grfn/system/home/modules/common.nix @@ -118,4 +118,8 @@ enableBashIntegration = true; enableZshIntegration = true; }; + + services.dropbox = { + enable = true; + }; } |