bitwarden be WALKING

This commit is contained in:
marty 2025-12-21 10:36:34 +01:00
parent 5fa40025d0
commit 2d08836672
5 changed files with 19 additions and 4 deletions

View file

@ -1,22 +0,0 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
desktop = {
grimshot.enable = lib.mkEnableOption "enable grimshot";
};
};
config = lib.mkIf config.desktop.grimshot.enable {
home.packages = with pkgs; [
grimblast
gradia
];
};
}