dotfiles/home/modules/bottom/default.nix
2025-01-18 03:50:54 -06:00

16 lines
261 B
Nix
Executable file

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