dotfiles/nix/modules/nixos/features/desktop/peek.nix
2024-12-05 19:33:06 +00:00

15 lines
234 B
Nix

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