diff --git a/modules/hosts/tux/tux.nix b/modules/hosts/tux/tux.nix index 47b0094..909bac6 100644 --- a/modules/hosts/tux/tux.nix +++ b/modules/hosts/tux/tux.nix @@ -12,7 +12,7 @@ home-vpn opentablet - #TODO: laptop specific aspects like powertop + appimage ]; }; } diff --git a/modules/programs/appimage.nix b/modules/programs/appimage.nix new file mode 100644 index 0000000..7807aa1 --- /dev/null +++ b/modules/programs/appimage.nix @@ -0,0 +1,8 @@ +{ + flake.modules.nixos.appimage = { pkgs, ...}: { + programs.appimage = { + enable = true; + binfmt = true; + }; + }; +}