1
Fork 0
nixos-system-config/modules/system/basic.nix
2024-12-25 18:20:47 +01:00

21 lines
261 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
libqalculate
];
}