dotfiles/modules/cli/default.nix

49 lines
686 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
2022-03-21 13:20:46 +01:00
imports = [
./adb.nix
./bin
./direnv.nix
./fish.nix
./git.nix
./nix.nix
./ssh.nix
# ./zsh.nix
];
2021-12-04 11:44:01 +01:00
home-manager.users.moritz = {
2021-12-04 11:45:01 +01:00
home.packages = with pkgs; [
# archives
p7zip
2021-12-24 12:44:09 +01:00
# file management
2021-12-04 11:45:01 +01:00
ranger
trash-cli
2022-03-21 13:20:46 +01:00
# monitoring
htop
2021-12-04 11:45:01 +01:00
# fetcher
neofetch
2021-12-24 12:44:09 +01:00
# typing
ttyper
2022-01-21 22:06:47 +01:00
# ripping
abcde
handbrake
2022-03-21 13:20:46 +01:00
# utility
cht-sh
2021-12-04 11:45:01 +01:00
];
2021-12-04 11:44:01 +01:00
programs = {
bat.enable = true;
2022-03-21 13:20:46 +01:00
command-not-found.enable = true;
exa.enable = true;
fzf.enable = true;
2022-01-24 12:40:44 +01:00
gpg.enable = true;
2022-03-21 13:20:46 +01:00
starship.enable = true;
2021-12-04 11:44:01 +01:00
};
};
2021-09-14 20:55:50 +02:00
}