dots/hosts/orion/modules/programs.nix
Price Hiller 374b01bfc6
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 39s
refactor(hosts/orion): use nix-ld defaults for libraries
2024-11-21 13:49:29 -06:00

22 lines
400 B
Nix

{ pkgs, ... }:
{
programs = {
dconf.enable = true;
zsh = {
enable = true;
enableCompletion = true;
enableGlobalCompInit = false;
enableBashCompletion = true;
};
nix-ld.enable = true;
wireshark = {
enable = true;
package = pkgs.wireshark;
};
steam.enable = true;
appimage = {
enable = true;
binfmt = true;
};
};
}