configuration.nix/hosts/rico1/programs/default.nix

21 lines
299 B
Nix
Raw Normal View History

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