17 lines
237 B
Nix
17 lines
237 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.features.desktop.peek.enable = mkEnableOption "Enable peek";
|
|
|
|
config = mkIf config.features.desktop.peek.enable {
|
|
environment.systemPackages = with pkgs; [ peek ];
|
|
};
|
|
}
|