nixos-configuration/fish.nix
2020-08-27 13:08:35 +02:00

9 lines
132 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
unstable.fish
];
programs.fish.enable = true;
}