configuration.nix/hosts/wynne/programs/default.nix

16 lines
199 B
Nix

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