dotfiles/modules/cli/default.nix

26 lines
404 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
2021-12-26 23:34:42 +01:00
imports = [ ./bin ./adb.nix ./direnv.nix ./git.nix ./nix.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
# fetcher
neofetch
2021-12-24 12:44:09 +01:00
# typing
ttyper
2021-12-04 11:45:01 +01:00
];
2021-12-04 11:44:01 +01:00
programs = {
exa.enable = true;
bat.enable = true;
};
};
2021-09-14 20:55:50 +02:00
}