python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / x11 / window-managers / notion.nix
blob0015e90a41c5e5d170eb5ee49879079495e26c25
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 (lib.mdDoc "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   };