adding shell for ags dev

This commit is contained in:
Chris Cochrun 2024-06-15 07:15:22 -05:00
parent 5a985cad9f
commit 88dbdc172a
4 changed files with 60 additions and 0 deletions

25
.config/ags/flake.nix Normal file
View file

@ -0,0 +1,25 @@
{
description = "The Flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, ... }:
{
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in rec
{
devShell = import ./shell.nix { inherit pkgs; };
defaultPackage = pkgs.libsForQt5.callPackage ./default.nix { };
}
);
};
}