16 lines
319 B
Nix
16 lines
319 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.features.cli.neofetch;
|
|
|
|
in {
|
|
|
|
options.features.cli.neofetch.enable = mkEnableOption "enable neofetch";
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.fish.interactiveShellInit = "neofetch --ascii-distro nixos";
|
|
home.packages = with pkgs; [ neofetch ];
|
|
};
|
|
}
|