1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00

hyprshell: add module (#7409)

This commit is contained in:
Aguirre Matteo 2025-07-10 19:23:15 +00:00 committed by GitHub
parent 50330593f3
commit d81cb050f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 193 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
services.hyprshell = {
enable = true;
settings = {
layerrules = true;
kill_bind = "ctrl+shift+alt, h";
version = 1;
windows = {
scale = 8.5;
items_per_row = 5;
};
};
style = ./style.css;
};
nmt.script = ''
assertFileExists home-files/.config/hyprshell/config.json
assertFileExists home-files/.config/hyprshell/style.css
assertFileContent home-files/.config/hyprshell/config.json \
${./config.json}
assertFileContent home-files/.config/hyprshell/style.css \
${./style.css}
'';
}