configuration.nix/hosts/rico1/programs/default.nix
2024-06-25 00:40:19 +05:30

15 lines
187 B
Nix

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