dotfiles/home/modules/bottom/default.nix
2025-01-08 01:05:45 -06:00

9 lines
204 B
Nix
Executable file

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