14 lines
181 B
Nix
14 lines
181 B
Nix
|
{pkgs, ...}: {
|
||
|
imports = [
|
||
|
./neovim.nix
|
||
|
./starship.nix
|
||
|
./zsh.nix
|
||
|
];
|
||
|
|
||
|
programs.git.enable = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git-crypt
|
||
|
];
|
||
|
}
|