grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / x11 / window-managers / notion.nix
blob4ece0d241c90ce238b229b941baa0c457b3cb8ba
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.xserver.windowManager.notion;
7 in
10   options = {
11     services.xserver.windowManager.notion.enable = mkEnableOption "notion";
12   };
14   config = mkIf cfg.enable {
15     services.xserver.windowManager = {
16       session = [{
17         name = "notion";
18         start = ''
19           ${pkgs.notion}/bin/notion &
20           waitPID=$!
21         '';
22       }];
23     };
24     environment.systemPackages = [ pkgs.notion ];
25   };