hyprpanel: assert theme name warning

This commit is contained in:
Austin Horstman
2026-06-01 12:42:02 -05:00
parent c81a3d2383
commit 6a6941ad20
3 changed files with 48 additions and 20 deletions

View File

@@ -2,5 +2,6 @@
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
hyprpanel-basic-config = ./basic-config.nix;
hyprpanel-deprecated-theme-name = ./deprecated-theme-name.nix;
hyprpanel-with-hypridle = ./with-hypridle.nix;
}

View File

@@ -0,0 +1,26 @@
{ config, ... }:
{
programs.hyprpanel = {
enable = true;
package = config.lib.test.mkStubPackage { name = "hyprpanel"; };
settings.theme.name = "catppuccin_mocha";
};
test.asserts.warnings.expected = [
''
Using `programs.hyprpanel.settings.theme.name` as a named theme is deprecated and will be
removed in a future release. Please use `programs.hyprpanel.settings.theme` instead.
Named theme loading was removed because it requires import-from-derivation.
Paste theme contents from:
https://github.com/Jas-SinghFSU/HyprPanel/blob/2c0c66a/themes/catppuccin_mocha.json
''
];
nmt.script = ''
assertFileExists "home-files/.config/hyprpanel/config.json"
'';
}