Nix flake for portable CLI tools and dotfiles - fish, tmux, starship, and friends.
  • Nix 72.4%
  • Shell 27.6%
Find a file
Fernando Rumbo Llanos 7205d4497e new
2026-04-22 06:57:09 +02:00
config new 2026-04-22 06:57:09 +02:00
.gitignore some stuff 2026-03-31 13:05:53 +02:00
.gitmodules Add nvim config as git submodule for easier editing 2025-12-12 07:45:30 +01:00
flake.lock new 2026-04-22 06:57:09 +02:00
flake.nix new 2026-04-22 06:57:09 +02:00
home.nix gh dash 2026-04-20 10:24:28 +02:00
README.md new 2026-04-22 06:57:09 +02:00

homeless

Nix flake for managing dotfiles and CLI tools.

Packages

Package Description
lazygit Terminal UI for git
fd Modern find replacement
bat cat with syntax highlighting
fzf Fuzzy finder
atuin Shell history sync
zoxide Smart cd command
tmux Terminal multiplexer (with config)
starship Cross-shell prompt (with config)
fish Fish shell (with config, includes starship, fzf.fish, and forge.fish)

Installation

Install all packages:

nix profile install .#all

Install individual packages:

nix profile install .#fish
nix profile install .#tmux
nix profile install .#lazygit
# etc.

Try without installing:

nix run .#fish
nix run .#lazygit

Development shell:

nix develop

Configuration

Configs live in config/:

config/
├── tmux.conf        # tmux configuration
├── starship.toml    # starship prompt
└── fish/
    ├── config.fish  # fish shell config
    └── functions/   # fish functions

Fish

Fish auto-initializes:

  • Starship prompt
  • Zoxide (z command)
  • Atuin (shell history)
  • Fzf key bindings
  • forge.fish prompt integration for : commands and @ file picking

forge.fish expects the forge CLI to already be available on your PATH.

Aliases:

  • ggit
  • lglazygit
  • catbat
  • llls -la

Functions:

  • mkcd <dir> - create and cd into directory
  • gitignore <lang> - fetch gitignore templates

Tmux

Prefix is Ctrl-a.

Key Action
prefix + | Split vertical
prefix + - Split horizontal
prefix + h/j/k/l Navigate panes
prefix + H/J/K/L Resize panes
prefix + r Reload config

Updating

nix flake update
nix profile upgrade '.*'