Compare commits

...

4 Commits

Author SHA1 Message Date
gitea actions ba9849effd update helium to 0.10.8.1 2026-04-04 06:00:40 +00:00
thomas 6efa23d145 fix handy
helium update / update-helium (push) Successful in 13s
zen browser update / update-zen-browser (push) Successful in 14s
handy update / update-handy (push) Successful in 9s
t3code update / update-t3code (push) Successful in 12s
2026-04-01 14:49:46 +01:00
thomas 2ebdafd916 add localsend 2026-03-29 11:42:19 +01:00
thomas 0a625747e5 wifi fixes 2026-03-26 23:33:23 +00:00
4 changed files with 14 additions and 3 deletions
+10 -1
View File
@@ -43,7 +43,16 @@ in {
networking.hostName = "nixos";
# Networking
networking.networkmanager.enable = true;
networking.networkmanager = {
enable = true;
wifi.powersave = false;
};
# LocalSend
networking.firewall = {
allowedTCPPorts = [53317];
allowedUDPPorts = [53317];
};
# WebHID/VIA access on Linux (VIA needs hidraw access)
services.udev.extraRules = ''
+1
View File
@@ -28,6 +28,7 @@
obs-studio
jjui
bat
localsend
];
systemd.user.services.handy = {
+1
View File
@@ -17,6 +17,7 @@
install -m 444 -D "$desktop_file" "$out/share/applications/${pname}.desktop"
substituteInPlace "$out/share/applications/${pname}.desktop" \
--replace 'Exec=AppRun' 'Exec=${pname}' || true
sed -i -E 's|^Exec=.*$|Exec=${pname}|g' "$out/share/applications/${pname}.desktop" || true
fi
if [ -d ${contents}/usr/share/icons ]; then
+2 -2
View File
@@ -2,11 +2,11 @@
perSystem = { pkgs, ... }: {
packages.helium = pkgs.appimageTools.wrapType2 rec {
pname = "helium";
version = "0.10.6.1";
version = "0.10.8.1";
src = pkgs.fetchurl {
url = "https://github.com/imputnet/helium-linux/releases/download/${version}/${pname}-${version}-x86_64.AppImage";
hash = "sha256-6xqNRaP3aqitEseexRVEEjKkJClC0j1HHZoRGQanhSk=";
hash = "sha256-pN/Iw1ANggDOxxFb2CN436qbcrs8/bDcEqjZC80grQs=";
};
extraInstallCommands = let