window-manager service: add notion

Add the notion window manager to the windowManager service definition.

Changed files
+33
nixos
modules
services
x11
window-managers
+1
nixos/modules/services/x11/window-managers/default.nix
···
./i3.nix
./metacity.nix
./openbox.nix
+
./notion.nix
./ratpoison.nix
./sawfish.nix
./stumpwm.nix
+32
nixos/modules/services/x11/window-managers/notion.nix
···
+
{ config, lib, pkgs, ... }:
+
+
with lib;
+
+
let
+
cfg = config.services.xserver.windowManager.notion;
+
in
+
+
{
+
options = {
+
services.xserver.windowManager.notion = {
+
enable = mkOption {
+
default = false;
+
example = true;
+
description = "Enable the notion tiling window manager.";
+
};
+
};
+
};
+
+
config = mkIf cfg.enable {
+
services.xserver.windowManager = {
+
session = [{
+
name = "notion";
+
start = ''
+
${pkgs.notion}/bin/notion &
+
waitPID=$!
+
'';
+
}];
+
};
+
environment.systemPackages = [ pkgs.notion ];
+
};
+
}