nixpkgs/nixos/modules/services/x11/window-managers/notion.nix

27 lines
476 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.xserver.windowManager.notion;
in
{
options = {
services.xserver.windowManager.notion.enable = mkEnableOption "notion";
};
config = mkIf cfg.enable {
services.xserver.windowManager = {
session = [{
name = "notion";
start = ''
${pkgs.notion}/bin/notion &
waitPID=$!
'';
}];
};
environment.systemPackages = [ pkgs.notion ];
};
}