1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/tests/modules/services/hyprland/default.nix
Austin Horstman 061793150a tests/hyprland: add submap test
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-09-01 23:49:51 -05:00

12 lines
576 B
Nix

{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
hyprland-simple-config = ./simple-config.nix;
hyprland-multiple-devices-config = ./multiple-devices-config.nix;
hyprland-null-all-packages-config = ./null-all-packages-config.nix;
hyprland-null-package-config = ./null-package-config.nix;
hyprland-null-portal-package-config = ./null-portal-package-config.nix;
hyprland-sourceFirst-false-config = ./sourceFirst-false-config.nix;
hyprland-inconsistent-config = ./inconsistent-config.nix;
hyprland-submaps-config = ./submaps-config.nix;
}