Link: https://github.com/nix-community/stylix/pull/1700 Reviewed-by: awwpotato <awwpotato@voidq.com>
12 lines
246 B
Nix
12 lines
246 B
Nix
{ pkgs, ... }:
|
|
{
|
|
stylix.testbed.ui = {
|
|
graphicalEnvironment = "hyprland";
|
|
|
|
# We need something to open a window so that we can check the window borders
|
|
application = {
|
|
name = "kitty";
|
|
package = pkgs.kitty;
|
|
};
|
|
};
|
|
}
|