dotfiles/modules/home/cli/fun/fastFetch/default.nix

11 lines
168 B
Nix
Raw Normal View History

2025-01-08 19:06:14 -06:00
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix);
2025-01-19 23:40:54 -06:00
in
{
2025-01-08 19:06:14 -06:00
programs.fastfetch = {
enable = true;
settings = settingsPath;
};
}