dotfiles/home/modules/bottom/default.nix

10 lines
204 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 01:05:45 -06:00
settingsPath = import (configPath + "/settings.nix");
in {
enable = true;
settings = settingsPath {inherit flake;};
};
2024-11-20 17:47:07 -06:00
}