feat(tyr): fix some conflicts in config

This commit is contained in:
CronyAkatsuki 2025-09-24 20:43:29 +02:00
parent b533d52727
commit f9bea2df78
3 changed files with 10 additions and 12 deletions

View file

@ -134,18 +134,6 @@
# Enable my specific settings
crony.secrets.enable = true;
# Optimise storage
nix.optimise = {
automatic = true;
dates = "weekly";
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 10d";
};
# setup podman for virtualisation
virtualisation = {
podman = {

View file

@ -0,0 +1,5 @@
{
imports = [
./syncthing.nix
];
}

View file

@ -0,0 +1,5 @@
{
services.syncthing = {
enable = true;
};
}