Skip to content

Commit

Permalink
feat(term): Add warp
Browse files Browse the repository at this point in the history
Selling out
  • Loading branch information
edmundmiller committed Feb 22, 2024
1 parent 7bb7f11 commit 435d4ae
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions modules/desktop/term/warp.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# modules/desktop/term/warp.nix
{
options,
config,
lib,
pkgs,
...
}:
with lib;
with lib.my; let
cfg = config.modules.desktop.term.warp;
in {
options.modules.desktop.term.warp = {enable = mkBoolOpt false;};

config = mkIf cfg.enable {
user.packages = with pkgs; [
warp-terminal
];
};
}

0 comments on commit 435d4ae

Please sign in to comment.