Add syncthing service

This commit is contained in:
Evie Litherland-Smith 2023-05-06 14:00:45 +01:00
parent bc2e8d2166
commit 2acbcf0d60
3 changed files with 12 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [
./git/personal.nix
./env/zsh.nix
./env/fish.nix
./env/bat.nix
./env/direnv.nix
./env/keychain.nix
@ -19,8 +20,10 @@
home.stateVersion = "22.11";
home.packages = with pkgs; [ silver-searcher ];
services.syncthing.enable = true;
programs.zsh.shellAliases.update = "home-manager switch";
programs.fish.shellAbbrs.update = "home-manager switch";
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';

View file

@ -10,6 +10,7 @@
../../env/keychain.nix
../../env/pypoetry.nix
../../env/starship.nix
../../env/syncthing.nix
../../terminal/wezterm.nix
../../tui/neovim.nix
../../tui/lazygit.nix

8
home/env/syncthing.nix vendored Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.syncthing = {
enable = true;
tray = true;
};
home.packages = with pkgs; [ syncthing-cli ];
}