configuration.nix/hosts/rico2/programs/default.nix

18 lines
200 B
Nix
Raw Permalink Normal View History

2024-07-05 02:29:05 +05:30
{ pkgs, ... }: {
2024-06-29 17:52:32 +05:30
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
2024-07-05 00:05:19 +05:30
programs = {
git.enable = true;
};
2024-06-29 17:52:32 +05:30
environment.systemPackages = with pkgs; [
sops
age
];
}