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

17 lines
261 B
Nix
Raw Normal View History

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