dotfiles/home/modules/bottom/default.nix
2025-01-08 19:06:14 -06:00

13 lines
231 B
Nix
Executable file

{flake, ...}: {
programs.bottom = let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) {
inherit
flake
;
};
in {
enable = true;
settings = settingsPath;
};
}