diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-07-31 14:45:24 +0000 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-07-31 14:45:24 +0000 |
commit | 8fecc5f5924c9a56ee4ee034d74cd8af3efd5fee (patch) | |
tree | 0e862d2bd9029ca9d02ae0c2dff7ddf5da83fb0c /nixos/services/syncthing.service.nix | |
parent | f10f6922fb9ea8b2535e97549a92cdf2d5cee08e (diff) | |
download | nixos-configuration-8fecc5f5924c9a56ee4ee034d74cd8af3efd5fee.tar.gz nixos-configuration-8fecc5f5924c9a56ee4ee034d74cd8af3efd5fee.tar.bz2 nixos-configuration-8fecc5f5924c9a56ee4ee034d74cd8af3efd5fee.zip |
feat: inherited Nvidia configuration from old conf
Diffstat (limited to 'nixos/services/syncthing.service.nix')
-rw-r--r-- | nixos/services/syncthing.service.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nixos/services/syncthing.service.nix b/nixos/services/syncthing.service.nix new file mode 100644 index 0000000..17d52b1 --- /dev/null +++ b/nixos/services/syncthing.service.nix @@ -0,0 +1,8 @@ +{pkgs, lib, ...}: +let + myUserName = ""; +in +{ + enable = true; + user = "" +} |