configuration.nix/hosts/wynne/programs/default.nix
2024-07-05 00:31:43 +05:30

17 lines
256 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
];
}