configuration.nix/hosts/rico1/programs/default.nix

14 lines
181 B
Nix
Raw Normal View History

2023-08-15 13:06:06 +05:30
{pkgs, ...}: {
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
programs.git.enable = true;
environment.systemPackages = with pkgs; [
git-crypt
];
}