1
Fork 0
nixos-system-config/modules/system/basic.nix

20 lines
244 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
programs.nh = {
enable = true;
flake = "/nix/config";
};
environment.systemPackages = with pkgs; [
fastfetch
wget
unzip
git
tree
dos2unix
neovim
];
}