mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
34 lines
744 B
Nix
34 lines
744 B
Nix
{
|
|
services.hyprshell = {
|
|
enable = true;
|
|
settings = {
|
|
version = 3;
|
|
windows = {
|
|
scale = 8.5;
|
|
items_per_row = 5;
|
|
overview = {
|
|
key = "super_l";
|
|
modifier = "super";
|
|
launcher = {
|
|
default_terminal = "alacritty";
|
|
};
|
|
};
|
|
switch = {
|
|
modifier = "alt";
|
|
};
|
|
};
|
|
};
|
|
style = ./styles.css;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/hyprshell/config.json
|
|
assertFileExists home-files/.config/hyprshell/styles.css
|
|
|
|
assertFileContent home-files/.config/hyprshell/config.json \
|
|
${./config.json}
|
|
|
|
assertFileContent home-files/.config/hyprshell/styles.css \
|
|
${./styles.css}
|
|
'';
|
|
}
|