diff --git a/docs/src/release_notes/ghaf-24.06.md b/docs/src/release_notes/ghaf-24.06.md index 960152c18..80baf0a4c 100644 --- a/docs/src/release_notes/ghaf-24.06.md +++ b/docs/src/release_notes/ghaf-24.06.md @@ -40,7 +40,6 @@ The following target hardware is supported by this release: * Initial implementation of [IDS VM](../architecture/adr/idsvm.md) as a defensive network mechanism. * Support for [Element](https://element.io/) chat application. * GPS location sharing through the Element application. - * [AppFlowy](https://github.com/AppFlowy-IO/AppFlowy) uses the [Flutter](https://github.com/flutter) application framework. * NVIDIA Jetson Orin NX: * UARTI passthrough. * The Jetpack baseline software updates and fixes. diff --git a/modules/common/networking/hosts.nix b/modules/common/networking/hosts.nix index 60fbc4345..b9fb61811 100644 --- a/modules/common/networking/hosts.nix +++ b/modules/common/networking/hosts.nix @@ -75,10 +75,6 @@ let ip = 103; name = "comms-vm"; } - { - ip = 104; - name = "appflowy-vm"; - } { ip = 105; name = "business-vm"; diff --git a/modules/common/services/desktop.nix b/modules/common/services/desktop.nix index 8d7ae55c6..5917d1d26 100644 --- a/modules/common/services/desktop.nix +++ b/modules/common/services/desktop.nix @@ -139,14 +139,6 @@ in icon = "${pkgs.icon-pack}/slack.svg"; } - { - name = "AppFlowy"; - description = "Productivity & Note-Taking Application"; - vm = "AppFlowy"; - path = "${pkgs.givc-cli}/bin/givc-cli ${cliArgs} start appflowy"; - icon = "${pkgs.appflowy}/opt/data/flutter_assets/assets/images/flowy_logo.svg"; - } - { name = "Calculator"; description = "Solve Math Problems"; diff --git a/modules/desktop/graphics/demo-apps.nix b/modules/desktop/graphics/demo-apps.nix index a3b3e5ae2..e1ee1bfe0 100644 --- a/modules/desktop/graphics/demo-apps.nix +++ b/modules/desktop/graphics/demo-apps.nix @@ -29,7 +29,6 @@ in gala-app = mkProgramOption "Gala App" false; element-desktop = mkProgramOption "Element desktop" config.ghaf.graphics.enableDemoApplications; zathura = mkProgramOption "zathura" config.ghaf.graphics.enableDemoApplications; - appflowy = mkProgramOption "Appflowy" config.ghaf.graphics.enableDemoApplications; }; config = lib.mkIf config.ghaf.profiles.graphics.enable { @@ -63,12 +62,6 @@ in description = "PDF Viewer Application"; path = "${pkgs.zathura}/bin/zathura"; icon = "${pkgs.icon-pack}/document-viewer.svg"; - } - ++ lib.optional (cfg.appflowy && pkgs.stdenv.isx86_64) { - name = "AppFlowy"; - description = "Productivity & Note-Taking Application"; - path = "${pkgs.appflowy}/bin/appflowy"; - icon = "${pkgs.appflowy}/opt/data/flutter_assets/assets/images/flowy_logo.svg"; }; }; } diff --git a/modules/desktop/graphics/labwc.nix b/modules/desktop/graphics/labwc.nix index 46cd5b067..c3a201740 100644 --- a/modules/desktop/graphics/labwc.nix +++ b/modules/desktop/graphics/labwc.nix @@ -78,10 +78,6 @@ in identifier = "Element"; colour = "#337aff"; } - { - identifier = "AppFlowy"; - colour = "#4c3f7a"; - } { identifier = "org.gnome.TextEditor"; colour = "#353535"; diff --git a/modules/reference/appvms/default.nix b/modules/reference/appvms/default.nix index 9e2664aea..224660ec8 100644 --- a/modules/reference/appvms/default.nix +++ b/modules/reference/appvms/default.nix @@ -22,7 +22,6 @@ in - Element - Slack ''; - appflowy-vm = lib.mkEnableOption "Enable the Appflowy appvm"; business-vm = lib.mkEnableOption "Enable the Business appvm"; enabled-app-vms = lib.mkOption { type = lib.types.listOf lib.types.attrs; @@ -40,7 +39,6 @@ in ++ (lib.optionals cfg.gala-vm [ (import ./gala.nix { inherit pkgs lib config; }) ]) ++ (lib.optionals cfg.zathura-vm [ (import ./zathura.nix { inherit pkgs lib config; }) ]) ++ (lib.optionals cfg.comms-vm [ (import ./comms.nix { inherit pkgs lib config; }) ]) - ++ (lib.optionals cfg.appflowy-vm [ (import ./appflowy.nix { inherit pkgs lib config; }) ]) ++ (lib.optionals cfg.business-vm [ (import ./business.nix { inherit pkgs lib config; }) ]); }; }; diff --git a/modules/reference/profiles/mvp-user-trial.nix b/modules/reference/profiles/mvp-user-trial.nix index af361aa2d..a5ce94fa5 100644 --- a/modules/reference/profiles/mvp-user-trial.nix +++ b/modules/reference/profiles/mvp-user-trial.nix @@ -36,7 +36,6 @@ in gala-vm = true; zathura-vm = true; comms-vm = true; - appflowy-vm = true; business-vm = true; };