CrOS/home/crow/common/optional/desktops/dank/default.nix
2025-12-31 13:22:50 -05:00

26 lines
616 B
Nix

{ pkgs, inputs, ... }:
{
imports = [
inputs.dms.homeModules.dankMaterialShell.default
];
programs.dankMaterialShell = {
enable = true;
plugins = {
PomodoroTimer = {
enable = true;
src =
pkgs.fetchFromGitHub {
owner = "AvengeMedia";
repo = "dms-plugins";
rev = "8fa7c5286171c66a209dd74e9a47d6e72ccfdad6";
sha256 = "sha256-r6b6Rsy57rXTBuhdF6NHA1iekLF7/nMHn6nY6L6b804=";
sparseCheckout = [
"DankPomodoroTimer"
];
}
+ "/DankPomodoroTimer";
};
};
};
}