configuration.nix/hosts/rico2/programs/default.nix
2024-07-05 00:05:19 +05:30

20 lines
299 B
Nix

{ pkgs, lib, ... }: {
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
programs = {
command-not-found.enable = lib.mkDefault false;
git.enable = true;
};
environment.systemPackages = with pkgs; [
sops
age
libraspberrypi
raspberrypi-eeprom
];
}