added syncthing

This commit is contained in:
specCon18 2023-07-29 02:54:31 -04:00
parent e34907e038
commit b8907010fe
8 changed files with 46 additions and 17 deletions

View file

@ -48,4 +48,20 @@
jack.enable = true;
};
};
nix = {
# Sets flakes to unstable track instead of stable #
package = pkgs.nixUnstable; # or versioned attributes like nix_2_4
# Enable flakes and nix-command
extraOptions = ''experimental-features = nix-command flakes'';
# Auto maintainence
settings.auto-optimise-store = lib.mkDefault true;
# Prevent tampering of the pkgstore
readOnlyStore = true;
# Garbage collection
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
}

View file

@ -25,5 +25,6 @@
sops #file based secrets operations
direnv #used for development environments
python39
gcc
];
}