dotfiles/modules/cli/default.nix

13 lines
256 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
2021-11-29 11:53:07 +01:00
imports = [ ./adb.nix ./direnv.nix ./git.nix ./nix.nix ./zsh.nix ];
2021-12-04 11:44:01 +01:00
home-manager.users.moritz = {
home.packages = with pkgs; [ p7zip ];
programs = {
exa.enable = true;
bat.enable = true;
};
};
2021-09-14 20:55:50 +02:00
}