dots/hosts/orion/modules/programs.nix

22 lines
400 B
Nix
Raw Normal View History

{ pkgs, ... }:
2024-05-03 14:35:00 -05:00
{
programs = {
dconf.enable = true;
zsh = {
enable = true;
enableCompletion = true;
enableGlobalCompInit = false;
enableBashCompletion = true;
};
nix-ld.enable = true;
2024-09-21 21:20:50 -05:00
wireshark = {
enable = true;
package = pkgs.wireshark;
};
steam.enable = true;
appimage = {
enable = true;
binfmt = true;
};
2024-05-03 14:35:00 -05:00
};
}