configuration.nix/hosts/layne/programs/default.nix

18 lines
256 B
Nix
Raw Normal View History

2024-07-05 00:35:26 +05:30
{ pkgs, lib, ... }: {
2024-07-03 19:22:10 +05:30
imports = [
./neovim.nix
./starship.nix
./zsh.nix
];
2024-07-05 00:35:26 +05:30
programs = {
command-not-found.enable = lib.mkDefault false;
git.enable = true;
};
2024-07-03 19:22:10 +05:30
environment.systemPackages = with pkgs; [
sops
age
];
}