dotfiles/nix/modules/nixos/features/desktop/peek.nix

15 lines
234 B
Nix
Raw Normal View History

2024-12-05 19:33:06 +00:00
{
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 ];
};
}