Add appimage support.

This commit is contained in:
Joseph Hanson 2024-07-21 16:25:59 -05:00
parent 569a770943
commit 24d0e69914
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -56,6 +56,13 @@ with config;
defaultLocale = lib.mkDefault "en_US.UTF-8";
};
programs.mtr.enable = true;
programs.ssh.startAgent = true;
}
programs = {
mtr.enable = true;
ssh.startAgent = true;
# Enable appimage support and executing them via the appimage-run helper.
appimage = {
enable = true;
binfmt = true;
};
}