Initial commit

This commit is contained in:
alsaiduq-lab 2025-03-13 14:50:27 -06:00
commit e886de58af
23 changed files with 926 additions and 0 deletions

14
modules/fish.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
{
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
starship
fzf
bat
eza
fd
ripgrep
];
}