about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/programs/darling.nix
blob: 194b1648b78f0a507e0301cb41c449255c2518f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, lib, pkgs, ... }:

let
  cfg = config.programs.darling;
in {
  options = {
    programs.darling = {
      enable = lib.mkEnableOption "Darling, a Darwin/macOS compatibility layer for Linux";
      package = lib.mkPackageOption pkgs "darling" {};
    };
  };

  config = lib.mkIf cfg.enable {
    security.wrappers.darling = {
      source = lib.getExe cfg.package;
      owner = "root";
      group = "root";
      setuid = true;
    };
  };
}