From 079b242b93ede06ce1128210ddea0ee2972a4fbf Mon Sep 17 00:00:00 2001 From: Jakub Trzeciak Date: Wed, 20 Sep 2023 22:33:31 +0200 Subject: Flake and css --- flake.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..8550f33 --- /dev/null +++ b/flake.nix @@ -0,0 +1,24 @@ +{ + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + flake-utils.url = "github:numtide/flake-utils"; + }; + + outputs = { + self, + nixpkgs, + flake-utils, + ... + } @ inputs: flake-utils.lib.eachDefaultSystem ( + system: let + pkgs = import nixpkgs {inherit system;}; + in { + devShells.default = pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + dash + dasel + ]; + }; + } + ); +} -- cgit v1.2.3