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

17 lines
199 B
Nix
Raw Permalink Normal View History

2024-07-05 02:29:05 +05:30
{ pkgs, ... }: {
2024-07-03 17:03:51 +05:30
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
2024-07-05 00:31:34 +05:30
programs = {
git.enable = true;
};
2024-07-03 17:03:51 +05:30
environment.systemPackages = with pkgs; [
sops
age
];
}