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 ]; ```