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

17 lines
237 B
Nix
Raw Normal View History

2024-12-05 19:33:06 +00:00
{
config,
lib,
pkgs,
...
}:
2024-12-10 21:40:33 +00:00
with lib;
2024-12-05 19:33:06 +00:00
{
2024-12-10 21:40:33 +00:00
options.features.desktop.peek.enable = mkEnableOption "Enable peek";
2024-12-05 19:33:06 +00:00
2024-12-10 21:40:33 +00:00
config = mkIf config.features.desktop.peek.enable {
2024-12-05 19:33:06 +00:00
environment.systemPackages = with pkgs; [ peek ];
};
}