ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
{ config, lib, pkgs, ... }:

{

  options = {
    programs.mtr.enable        = lib.mkEnableOption "Polyfill option to fix weird bug in nix-darwin?";
    programs.traceroute.enable = lib.mkEnableOption "Polyfill option to fix weird bug in nix-darwin?";

    services.dbus.enable       = lib.mkEnableOption "Polyfill option to fix weird bug in nix-darwin?";
    services.pcscd.enable      = lib.mkEnableOption "Polyfill option to fix weird bug in nix-darwin?";

    services.dbus.packages     = lib.mkOption { type = lib.types.listOf lib.types.path; };
    services.udev.packages     = lib.mkOption { type = lib.types.listOf lib.types.path; };
  };

}