nixos-config/hosts/katana/system-pkgs.nix
2024-04-10 03:42:16 -04:00

33 lines
729 B
Nix

{ modulesPath, config, pkgs, lib, self, ... }:
{
environment.systemPackages = with pkgs; [
gparted
bluez
blueman
nerdfonts
home-manager
pkg-config
ripgrep
openssl
tree
eza
htop
zsh
dig #dns lookup
rage #file encryption
age-plugin-yubikey #plugin for rage to manage yubi-2fa
sops #file based secrets operations
direnv #used for development environments
python311Packages.pip
python311
python311Packages.pygithub
gcc
bottom
felix-fm
gitui
spotify
zulip
vscode
pkgs.python311Packages.python-kasa
];
}