Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| beef134cdd | |||
| 6efa23d145 | |||
| 2ebdafd916 | |||
| 0a625747e5 |
+10
-1
@@ -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 = ''
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
obs-studio
|
||||
jjui
|
||||
bat
|
||||
localsend
|
||||
];
|
||||
|
||||
systemd.user.services.handy = {
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
perSystem = {pkgs, ...}: {
|
||||
packages.handy = pkgs.appimageTools.wrapType2 rec {
|
||||
pname = "handy";
|
||||
version = "0.8.0";
|
||||
version = "0.8.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/cjpais/Handy/releases/download/v${version}/Handy_${version}_amd64.AppImage";
|
||||
hash = "sha256-PLcssfd6iMx51mglAJ7D4+67HFazwfhJMImgU9WiNDk=";
|
||||
hash = "sha256-+rRePge3ts87RiqZDF9/af2MDP5OBWs8yJSTHPe1fKM=";
|
||||
};
|
||||
|
||||
extraInstallCommands = let
|
||||
@@ -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,11 +2,11 @@
|
||||
perSystem = { pkgs, ... }: {
|
||||
packages.helium = pkgs.appimageTools.wrapType2 rec {
|
||||
pname = "helium";
|
||||
version = "0.10.7.1";
|
||||
version = "0.10.6.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/imputnet/helium-linux/releases/download/${version}/${pname}-${version}-x86_64.AppImage";
|
||||
hash = "sha256-+vmxXcg8TkR/GAiHKnjq4b04bGtQzErfJkOb4P4nZUk=";
|
||||
hash = "sha256-6xqNRaP3aqitEseexRVEEjKkJClC0j1HHZoRGQanhSk=";
|
||||
};
|
||||
|
||||
extraInstallCommands = let
|
||||
|
||||
Reference in New Issue
Block a user