Attempting to add appimages

This commit is contained in:
Zonsopkomst 2024-02-07 13:40:52 -06:00
parent d5431d17c8
commit 7f179a26ac
3 changed files with 13 additions and 10 deletions

View File

@ -265,6 +265,7 @@
./hosts/local/weda/packages.nix
# User Specific
./users/zonsopkomst/appimage.nix # 02/07/2024 Attempting to wrap appimages, staring with colorpicker
./users/zonsopkomst/flatpak.nix
./users/zonsopkomst/home-manager.nix
./users/zonsopkomst/syncthing.nix

View File

@ -1,10 +0,0 @@
---
title: Appimage
type: Instructions
author: Zonsopkomst
created: 2023-9-13
---
# Flatpak Instructions
[[flatpak.org]] [[2023]]
## Install Packages

View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
appimageTools.wrapType2 { # or wrapType1
name = "colorpicker";
src = fetchurl {
url = "https://github.com/Toinane/colorpicker/releases/download/2.2.0/Colorpicker-2.2.0.AppImage"
hash = "0000000000000000000000000000000000000000000000000000";
};
extraPkgs = pkgs: with pkgs; [ ];
}
}