From 24d0e69914a5eb1ec178eb058f37aa70e0d1a01d Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sun, 21 Jul 2024 16:25:59 -0500 Subject: [PATCH] Add appimage support. --- nixos/profiles/role-workstation.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/nixos/profiles/role-workstation.nix b/nixos/profiles/role-workstation.nix index 9832dae..f28d032 100644 --- a/nixos/profiles/role-workstation.nix +++ b/nixos/profiles/role-workstation.nix @@ -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; + }; + }