mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
be5ad1d07c
Add the notion window manager to the windowManager service definition.
32 lines
603 B
Nix
32 lines
603 B
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 ];
|
|
};
|
|
}
|