diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 108d75e..72c7ccc 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -27,6 +27,7 @@ ./services/displaymanager.nix ./services/nix-flatpak.nix ./services/sound.nix + ./system/appimage.nix ./system/bluetooth.nix ./system/bootloader.nix ./system/environment.nix diff --git a/nodes/hosts/common/system/appimage.nix b/nodes/hosts/common/system/appimage.nix new file mode 100644 index 0000000..a665ac7 --- /dev/null +++ b/nodes/hosts/common/system/appimage.nix @@ -0,0 +1,5 @@ +{ ... }: { + programs.appimage.enable = true; + programs.appimage.binfmt = true; +} +