nix/modules/fish.nix

12 lines
200 B
Nix
Raw Normal View History

2023-09-04 11:40:30 -05:00
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in {
programs.fish = {
enable = true;
};
environment.systemPackages = [ unstable.fish ];
}