mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-03-07 18:34:09 -05:00
26 lines
616 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|