configuration.nix/hosts/rico2/programs/default.nix
2023-07-28 16:25:19 +05:30

13 lines
178 B
Nix

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