18 lines
256 B
Nix
18 lines
256 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.fastfetch.enable = lib.mkEnableOption "FastFetch";
|
|
|
|
config.programs.fastfetch = lib.mkIf config.fastfetch.enable {
|
|
enable = true;
|
|
package = pkgs.fastfetch;
|
|
};
|
|
|
|
imports = [
|
|
./settings
|
|
];
|
|
}
|