Price Hiller
374b01bfc6
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 39s
22 lines
400 B
Nix
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;
|
|
};
|
|
};
|
|
} |