Add flake conf

This commit is contained in:
Florian RICHER 2024-06-27 20:53:58 +02:00
parent 7eed6d9852
commit 2171f1a6c8
2 changed files with 85 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
description = "Test Phoenix Live View";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = rec {
default = pkgs.mkShell {
buildInputs = [
pkgs.kdePackages.kirigami
];
};
};
});
}