mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
2955b2fcf4
Now the default way to define NixOS window manager modules is to use mkEnableOption to describe the module itself. In this commit, all files on nixos/modules/services/x11/window-managers are changed.
27 lines
476 B
Nix
27 lines
476 B
Nix
{ 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 ];
|
|
};
|
|
}
|