about summary refs log blame commit diff stats
path: root/pkgs/by-name/ya/yambar-cpu/flake.nix
blob: 3a27bccf8031dc659e78b685ac3f5f8fc157f7f1 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                          


                                                   
            


                                                  
                                                
        









                                        



           
{
  description = "A smart way to check your cpu usage";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = {
    nixpkgs,
    flake-utils,
    ...
  }:
    flake-utils.lib.eachDefaultSystem (system: let
      pkgs = nixpkgs.legacyPackages."${system}";
    in {
      devShells.default = pkgs.mkShell {
        packages = with pkgs; [
          # rust stuff
          cargo
          clippy
          rustc
          rustfmt

          cargo-edit
          cargo-expand
        ];
      };
    });
}
# vim: ts=2