Add gather-town chromium wrapper.

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2024-10-31 14:24:28 +01:00
parent cdffdb7e8f
commit 709d5ee085
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E
3 changed files with 17 additions and 0 deletions

View file

@ -143,6 +143,8 @@ in {
libjxl
exiftool
percept
gather-town
];
home.file.".config/alacritty/alacritty.toml".source = ../alacritty/alacritty.toml;

View file

@ -38,6 +38,7 @@
perl
percept
bumps-xorg
gather-town
])
++ (with inputs'.nixng.overlays; [
default

View file

@ -0,0 +1,14 @@
{...}: {
overlays.gather-town = final: prev: {
gather-town = final.writeShellApplication {
name = "gather-town";
runtimeInputs = [final.chromium];
text = ''
export NOUVEAU_USE_ZINK=0
exec chromium --kiosk --noerrdialogs --disable-infobars https://gather.town
'';
};
};
}