mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #8815 from jfb/add-nixos-to-window-managers
window-manager service: add notion
This commit is contained in:
commit
bf596463fd
2 changed files with 33 additions and 0 deletions
|
@ -16,6 +16,7 @@ in
|
|||
./i3.nix
|
||||
./metacity.nix
|
||||
./openbox.nix
|
||||
./notion.nix
|
||||
./ratpoison.nix
|
||||
./sawfish.nix
|
||||
./stumpwm.nix
|
||||
|
|
32
nixos/modules/services/x11/window-managers/notion.nix
Normal file
32
nixos/modules/services/x11/window-managers/notion.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue