mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 12:19:43 +01:00
10 lines
228 B
Nix
10 lines
228 B
Nix
|
{
|
||
|
programs.bemenu = { enable = true; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
||
|
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh \
|
||
|
"export BEMENU_OPTS"
|
||
|
'';
|
||
|
}
|