Files
dotfiles/hosts/satori/pkgs.nix
Amneesh Singh 5fef417fb0 home/natto: move around stuff
move git and zsh from hosts/satori and split services.nix

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-24 11:36:04 +05:30

41 lines
560 B
Nix

{ lib, config, inputs, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tmux
bc
gnumake
pciutils
usbutils
ntfs3g
python3
htop
wget
ripgrep
kbd
gcc
virtmanager
rnix-lsp
vulkan-tools
vulkan-headers
jq
dconf
];
programs = {
gnupg = {
agent = {
enableSSHSupport = true;
enable = true;
pinentryFlavor = "curses";
};
};
adb.enable = true;
light.enable = true;
gamemode.enable = true;
nm-applet.enable = true;
};
}