mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-09 12:06:04 +01:00
18 lines
386 B
Nix
18 lines
386 B
Nix
{
|
|
wayland.windowManager.labwc = {
|
|
enable = true;
|
|
package = null;
|
|
autostart = [
|
|
"wayvnc &"
|
|
"waybar &"
|
|
"swaybg -c '#113344' >/dev/null 2>&1 &"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
labwcAutostart=home-files/.config/labwc/autostart
|
|
|
|
assertFileExists "$labwcAutostart"
|
|
assertFileContent $(normalizeStorePaths "$labwcAutostart") "${./autostart}"
|
|
'';
|
|
}
|