vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / x11 / window-managers / hypr.nix
blob18111f8741a208a6adfdfe10a31038ec1fd7514b
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.xserver.windowManager.hypr;
7 in
9   ###### interface
10   options = {
11     services.xserver.windowManager.hypr.enable = mkEnableOption "hypr";
12   };
14   ###### implementation
15   config = mkIf cfg.enable {
16     services.xserver.windowManager.session = singleton {
17       name = "hypr";
18       start = ''
19         ${pkgs.hypr}/bin/Hypr &
20         waitPID=$!
21       '';
22     };
23     environment.systemPackages = [ pkgs.hypr ];
24   };