configuration.nix/hosts/rico0/programs/default.nix

21 lines
299 B
Nix
Raw Normal View History

2024-07-04 23:33:40 +05:30
{ pkgs, lib, ... }: {
2024-06-29 17:52:32 +05:30
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
2024-07-04 23:33:40 +05:30
programs = {
command-not-found.enable = lib.mkDefault false;
git.enable = true;
};
2024-06-29 17:52:32 +05:30
environment.systemPackages = with pkgs; [
sops
age
libraspberrypi
raspberrypi-eeprom
];
}