2.home-manager/tests/modules/services/hyprsunset/default.nix
kerfuzzle fa184c5460 hyprsunset: Add tests for transitons option
Adds tests to ensure that the services are still created correctly and the correct deprecation warnings are shown

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-07-29 13:11:56 -05:00

7 lines
262 B
Nix

{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
hyprsunset-basic-configuration = ./basic-configuration.nix;
hyprsunset-no-configuration = ./no-configuration.nix;
hyprsunset-transitions-deprecated = ./transitions-deprecated.nix;
}