refactor: add flake module for pkgs/
This commit is contained in:
parent
c927181aa9
commit
99daa25dee
3 changed files with 13 additions and 14 deletions
|
@ -1,6 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
brlaser = pkgs.callPackage ./brlaser { };
|
||||
deconz = pkgs.qt5.callPackage ./deconz { };
|
||||
}
|
12
pkgs/flake-module.nix
Normal file
12
pkgs/flake-module.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
_: {
|
||||
perSystem = { inputs, self', pkgs, ... }: {
|
||||
packages = {
|
||||
brlaser = pkgs.callPackage ./brlaser { };
|
||||
deconz = pkgs.qt5.callPackage ./deconz { };
|
||||
};
|
||||
|
||||
apps = {
|
||||
deconz = inputs.flake-utils.lib.mkApp { drv = self'.packages.deconz; };
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue