mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
Add gather-town
chromium wrapper.
Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
parent
cdffdb7e8f
commit
709d5ee085
|
@ -143,6 +143,8 @@ in {
|
|||
libjxl
|
||||
exiftool
|
||||
percept
|
||||
|
||||
gather-town
|
||||
];
|
||||
|
||||
home.file.".config/alacritty/alacritty.toml".source = ../alacritty/alacritty.toml;
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
perl
|
||||
percept
|
||||
bumps-xorg
|
||||
gather-town
|
||||
])
|
||||
++ (with inputs'.nixng.overlays; [
|
||||
default
|
||||
|
|
14
overlays/gather-town/default.nix
Normal file
14
overlays/gather-town/default.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue