nixos-systems/modules/system/fish.nix
Eli Ribble fe4d33cf03 Make do-agent, cloud-init, and fish opt-in via config
I just like having lists that show what's going on, and light redundancy
doesn't bother me.
2025-07-17 17:09:11 +00:00

10 lines
229 B
Nix

{ config, configPath, lib, pkgs, ... }:
with lib;
{
options.myModules.fish.enable = mkEnableOption "custom fish configuration";
config = mkIf config.myModules.fish.enable {
environment.systemPackages = [ pkgs.fish ];
};
}