diff --git a/tests/integration/standalone/alice-home-init.nix b/tests/integration/standalone/alice-home-init.nix index 946ddd4f..6a21e324 100644 --- a/tests/integration/standalone/alice-home-init.nix +++ b/tests/integration/standalone/alice-home-init.nix @@ -1,3 +1,5 @@ +{ config, pkgs, ... }: + { # Home Manager needs a bit of information about you and the paths it should # manage. diff --git a/tests/integration/standalone/home-with-symbols-init.nix b/tests/integration/standalone/home-with-symbols-init.nix index 5506041f..0574a4f0 100644 --- a/tests/integration/standalone/home-with-symbols-init.nix +++ b/tests/integration/standalone/home-with-symbols-init.nix @@ -1,3 +1,5 @@ +{ config, pkgs, ... }: + { # Home Manager needs a bit of information about you and the paths it should # manage. diff --git a/treefmt.toml b/treefmt.toml index a6569fa2..1e1d7f80 100644 --- a/treefmt.toml +++ b/treefmt.toml @@ -9,6 +9,10 @@ includes = [ "*.nix" ] command = "deadnix" options = [ "--edit", "--no-lambda-arg" ] includes = [ "*.nix" ] +excludes = [ + "tests/integration/standalone/alice-home-init.nix", + "tests/integration/standalone/home-with-symbols-init.nix" +] [formatter.keep-sorted] command = "keep-sorted"