diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-25 08:48:09 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-25 08:48:09 -0700 |
| commit | 77771fb43bb8faa8d3e0283a753712ee85fcae06 (patch) | |
| tree | 749bafe024e65fa10ad1d3a45cf8ec838d692117 /users/programs | |
| parent | add a module for backups (diff) | |
| download | infra-77771fb43bb8faa8d3e0283a753712ee85fcae06.tar.gz | |
move bats to programs
Diffstat (limited to 'users/programs')
| -rw-r--r-- | users/programs/bat.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/users/programs/bat.nix b/users/programs/bat.nix new file mode 100644 index 0000000..fb27397 --- /dev/null +++ b/users/programs/bat.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + programs.bat = { + enable = true; + config = { + theme = "ansi"; + pager = "less -FR"; + }; + }; +} |
