dotfiles/modules/home/cli/utilities/bottom/default.nix

17 lines
247 B
Nix
Raw Normal View History

2025-01-31 01:49:36 -06:00
{
flake,
config,
...
}:
2025-01-18 03:50:54 -06:00
{
programs.bottom =
let
configPath = ./config;
2025-01-31 01:49:36 -06:00
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
2025-01-18 03:50:54 -06:00
in
{
enable = true;
settings = settingsPath;
2025-01-08 19:06:14 -06:00
};
2024-11-20 17:47:07 -06:00
}