Files
nix-config/packages/system/gnome-nebula-vpn/default.nix
mjallen18 068d6c8f94 ext
2026-03-23 17:26:01 -05:00

30 lines
528 B
Nix

{
stdenvNoCC,
lib,
...
}:
stdenvNoCC.mkDerivation {
pname = "gnome-nebula-vpn";
version = "1.0.0";
src = ./extension;
installPhase = ''
runHook preInstall
uuid="nebula-vpn-status@mjallen"
dest="$out/share/gnome-shell/extensions/$uuid"
mkdir -p "$dest"
cp -r . "$dest/"
runHook postInstall
'';
meta = {
description = "GNOME Shell extension showing Nebula VPN status with interface info and a toggle";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
};
}