From cbd257bdd66cceab4de08dcadf390a48654fac52 Mon Sep 17 00:00:00 2001 From: tux Date: Wed, 11 Jun 2025 00:53:19 +0530 Subject: [PATCH] doc: add README.md --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..cb384b7 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +

+ tux's Panel +

+

+ wakatime + home + GitHub repo size + GitHub commit activity +

+ +![image](https://github.com/user-attachments/assets/a381b06c-618a-4a9e-b2ac-d6effa4f9069) + +## Installation + +Quick + +```nix +# If you want to quickly test out tpanel +nix run github:tuxdotrs/tpanel +``` + +Flake + +```nix +# Add to your flake inputs +tpanel = { + url = "github:tuxdotrs/tpanel"; + inputs.nixpkgs.follows = "nixpkgs"; +}; + +# Add this in your nixos config +environment.systemPackages = [ inputs.tpanel.packages.${system}.default ]; + +# Add this in your HomeManager config +home.packages = [ inputs.tpanel.packages.${system}.default ]; +```