From 678b6672efd5c03046ff13d7ac0bf23d2e73148d Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 11 Dec 2024 05:19:17 +0100 Subject: [PATCH] add television to default packages --- nixos/common/packages/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/common/packages/default.nix b/nixos/common/packages/default.nix index 1d2ad80f..1c552d56 100644 --- a/nixos/common/packages/default.nix +++ b/nixos/common/packages/default.nix @@ -3,7 +3,7 @@ # List packages installed in system profile environment.systemPackages = with pkgs; [ - dig + dig # DNS utilities nfs-utils # nfs network share tools sbctl # Secureboot Control wget # WebGet @@ -25,5 +25,6 @@ ethtool # Ethernet troubleshooting:with file # Shows the types of files yt-dlp # Download YouTube videos + television # Fuzzy finder for the Linux terminal ]; }