From bc559154f0dcc863e76b62953086eeac28203518 Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Mon, 17 Feb 2025 15:45:00 -0600 Subject: [PATCH] apply format --- home/modules/deepState.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/home/modules/deepState.nix b/home/modules/deepState.nix index 56b81d4..95b2084 100644 --- a/home/modules/deepState.nix +++ b/home/modules/deepState.nix @@ -8,11 +8,10 @@ with lib; let cfg = config.local.services.deepState; in { options.local.services.deepState.enable = mkEnableOption "trivionomicon settings"; - config = - mkIf cfg.enable { - home.sessionVariables = { - FSOCIETY_TELEGRAM_BACKUP_N = "0"; - FSOCIETY_TELEGRAM_BACKUP_LOCATION = "/extern/var/fsociety_backup"; - }; + config = mkIf cfg.enable { + home.sessionVariables = { + FSOCIETY_TELEGRAM_BACKUP_N = "0"; + FSOCIETY_TELEGRAM_BACKUP_LOCATION = "/extern/var/fsociety_backup"; }; + }; }