From 4198e5933c5d63ebf1bf2b4430c814de09ee23a8 Mon Sep 17 00:00:00 2001 From: Roman Lubij Date: Fri, 27 Feb 2026 21:32:50 +0100 Subject: [PATCH] Run treefmt --- cpp/flake.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cpp/flake.nix b/cpp/flake.nix index cd6b62b..c9227d7 100644 --- a/cpp/flake.nix +++ b/cpp/flake.nix @@ -2,11 +2,13 @@ description = "Central C++ Dev Shell"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small"; - outputs = { self, nixpkgs }: + outputs = + { self, nixpkgs }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; - in { + in + { devShells.${system}.default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ gcc @@ -23,4 +25,4 @@ ''; }; }; -} \ No newline at end of file +}