Files
nixos/Droidnix/generated/modules/traveldroid/apps/stackstorage.nix
T
2026-04-30 13:03:47 +02:00

21 lines
668 B
Nix

# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, lib, pkgs, ... }:
with lib;
let
transip-stack = pkgs.appimageTools.wrapType2 {
name = "transip-stack";
version = "latest";
src = pkgs.fetchurl {
url = "https://filehosting-client.transip.nl/packages/stack-linux-latest-x86_64.AppImage";
sha256 = "1cmwc3mfpi7n3ga25p19pmsjmvkiy8hk4s4mxdsxkprw2vvrhwd7";
};
extraPkgs = pkgsFinal: with pkgsFinal; [ fuse ];
};
in {
environment.systemPackages = [ transip-stack ];
wayland.windowManager.hyprland.settings = {
exec-once = [ "transip-stack" ];
};
}