hyprland-qt-support: add test case

Signed-off-by: ReStranger <restranger@disroot.org>
This commit is contained in:
ReStranger
2026-06-23 11:10:25 -05:00
committed by Austin Horstman
parent 83c0e03687
commit 16fdc3504e
3 changed files with 25 additions and 0 deletions
@@ -0,0 +1,3 @@
border_width=1
reduce_motion=true
roundness=2
@@ -0,0 +1,17 @@
{
programs.hyprland-qt-support = {
enable = true;
settings = {
roundness = 2;
border_width = 1;
reduce_motion = true;
};
};
nmt.script = ''
assertFileContent \
home-files/.config/hypr/application-style.conf \
${./basic-configuration.conf}
'';
}
@@ -0,0 +1,5 @@
{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
hyprland-qt-support-basic-configuration = ./basic-configuration.nix;
}