dotfiles/home/modules/bottom/default.nix

14 lines
231 B
Nix
Raw Normal View History

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