1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/clock-rs/example-settings.nix
Oughie 14eda3db4e clock-rs: add module
clock-rs is a modern, digital clock that effortlessly runs in your terminal
2025-04-20 20:02:06 -07:00

42 lines
872 B
Nix

{ pkgs, ... }:
{
config = {
programs.clock-rs = {
enable = true;
settings = {
general = {
color = "magenta";
interval = 250;
blink = true;
bold = true;
};
position = {
horizontal = "start";
vertical = "end";
};
date = {
fmt = "%A, %B %d, %Y";
use_12h = true;
utc = true;
hide_seconds = true;
};
};
};
nmt.script =
let
configDir =
if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support/clock-rs"
else
"home-files/.config/clock-rs";
in
''
assertFileExists "${configDir}/conf.toml"
assertFileContent "${configDir}/conf.toml" \
${./example-settings-expected.toml}
'';
};
}