services/greetd: fix environment variables
This commit is contained in:
parent
7f110e40fc
commit
30548fd17e
1 changed files with 4 additions and 4 deletions
|
@ -42,10 +42,10 @@ let
|
|||
];
|
||||
}
|
||||
// optionalAttrs styleCfg.enable {
|
||||
env = {
|
||||
HYPRCURSOR_THEME = styleCfg.cursorTheme.name;
|
||||
HYPRCURSOR_SIZE = styleCfg.cursorTheme.size;
|
||||
};
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,${styleCfg.cursorTheme.name}"
|
||||
"HYPRCURSOR_SIZE,${toString styleCfg.cursorTheme.size}"
|
||||
];
|
||||
};
|
||||
});
|
||||
in {
|
||||
|
|
Loading…
Add table
Reference in a new issue