mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 11:30:20 +00:00
19 lines
229 B
Nix
19 lines
229 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
programs.fish = {
|
||
|
enable = true;
|
||
|
|
||
|
};
|
||
|
|
||
|
programs.starship = {
|
||
|
enable = true;
|
||
|
enableFishIntegration = true;
|
||
|
};
|
||
|
|
||
|
programs.zoxide.enable = true;
|
||
|
|
||
|
services.atuin.enable = true;
|
||
|
|
||
|
|
||
|
}
|