You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
821 B
39 lines
821 B
{ pkgs, ... }: {
|
|
imports = [
|
|
./bash.nix
|
|
./bat.nix
|
|
./direnv.nix
|
|
./fish.nix
|
|
./gh.nix
|
|
./git.nix
|
|
./gpg.nix
|
|
./nix-index.nix
|
|
./pfetch.nix
|
|
./ranger.nix
|
|
./screen.nix
|
|
./shellcolor.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./xpo.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
comma # Install and run programs by sticking a , before them
|
|
distrobox # Nice escape hatch, integrates docker images with my environment
|
|
|
|
bc # Calculator
|
|
bottom # System viewer
|
|
ncdu # TUI disk usage
|
|
exa # Better ls
|
|
ripgrep # Better grep
|
|
fd # Better find
|
|
httpie # Better curl
|
|
diffsitter # Better diff
|
|
jq # JSON pretty printer and manipulator
|
|
trekscii # Cute startrek cli printer
|
|
|
|
nil # Nix LSP
|
|
nixfmt # Nix formatter
|
|
|
|
ltex-ls # Spell checking LSP
|
|
];
|
|
}
|
|
|