nix/hosts/laptop-server/config/programs.nix

22 lines
441 B
Nix
Raw Normal View History

2024-12-11 19:50:18 -07:00
{ pkgs, ... }:
{
# Install system packages
environment.systemPackages = with pkgs; [
# Basic necessities
wget
curl
neovim
home-manager
# VCS
git
jujutsu
];
# Install zsh
programs.zsh.enable = true;
# Disable default command-not-found (it doesn't work with flakes)
programs.command-not-found.enable = false;
programs.nix-index.enable = true;
}