Remove unnecessary quotes
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -21,16 +21,12 @@ in
|
||||
config = {
|
||||
wayland.windowManager.hyprland.settings.exec-once = lib.meta.getExe (pkgs.writeShellApplication {
|
||||
name = "init-hyprland";
|
||||
text = ''
|
||||
${cfg.initExtraConfig}
|
||||
'';
|
||||
text = cfg.initExtraConfig;
|
||||
});
|
||||
|
||||
wayland.windowManager.hyprland.settings.exec = lib.meta.getExe (pkgs.writeShellApplication {
|
||||
name = "reload-hyprland";
|
||||
text = ''
|
||||
${cfg.reloadExtraConfig}
|
||||
'';
|
||||
text = cfg.reloadExtraConfig;
|
||||
});
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user