configuration.nix/hosts/rico2/programs/default.nix
2023-08-05 14:00:40 +05:30

13 lines
181 B
Nix

{pkgs, ...}: {
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
programs.git.enable = true;
environment.systemPackages = with pkgs; [
git-crypt
];
}