Skip to content

Commit

Permalink
disable the appflowy
Browse files Browse the repository at this point in the history
Signed-off-by: Brian McGillion <[email protected]>
  • Loading branch information
brianmcgillion committed Oct 9, 2024
1 parent 637bdfd commit fce9316
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 27 deletions.
1 change: 0 additions & 1 deletion docs/src/release_notes/ghaf-24.06.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 0 additions & 4 deletions modules/common/networking/hosts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ let
ip = 103;
name = "comms-vm";
}
{
ip = 104;
name = "appflowy-vm";
}
{
ip = 105;
name = "business-vm";
Expand Down
8 changes: 0 additions & 8 deletions modules/common/services/desktop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
7 changes: 0 additions & 7 deletions modules/desktop/graphics/demo-apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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";
};
};
}
4 changes: 0 additions & 4 deletions modules/desktop/graphics/labwc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ in
identifier = "Element";
colour = "#337aff";
}
{
identifier = "AppFlowy";
colour = "#4c3f7a";
}
{
identifier = "org.gnome.TextEditor";
colour = "#353535";
Expand Down
2 changes: 0 additions & 2 deletions modules/reference/appvms/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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; }) ]);
};
};
Expand Down
1 change: 0 additions & 1 deletion modules/reference/profiles/mvp-user-trial.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ in
gala-vm = true;
zathura-vm = true;
comms-vm = true;
appflowy-vm = true;
business-vm = true;
};

Expand Down

0 comments on commit fce9316

Please sign in to comment.