26 lines
398 B
Nix
26 lines
398 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./adb.nix ./direnv.nix ./git.nix ./nix.nix ./zsh.nix ];
|
|
home-manager.users.moritz = {
|
|
home.packages = with pkgs; [
|
|
# archives
|
|
p7zip
|
|
|
|
# file management
|
|
ranger
|
|
trash-cli
|
|
|
|
# fetcher
|
|
neofetch
|
|
|
|
# typing
|
|
ttyper
|
|
];
|
|
programs = {
|
|
exa.enable = true;
|
|
bat.enable = true;
|
|
};
|
|
};
|
|
}
|