diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 72c7ccc..108d75e 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -27,7 +27,6 @@ ./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 deleted file mode 100644 index 1b17799..0000000 --- a/nodes/hosts/common/system/appimage.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ pkgs, ... }: { - programs.appimage.enable = true; - programs.appimage.binfmt = true; - programs.appimage.package = pkgs.appimage-run.override { extraPkgs = pkgs: [ - pkgs.haskellPackages.gi-ayatana-appindicator3 - pkgs.haskellPackages.happindicator3 - ]; }; -} -