atau-nixpkgs/flake.nix

24 lines
641 B
Nix
Raw Normal View History

2023-06-18 21:17:40 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
2023-06-21 22:53:21 +00:00
flake-utils.url = "github:numtide/flake-utils";
2023-06-18 21:17:40 +00:00
};
2023-06-21 22:53:21 +00:00
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
2023-06-21 23:36:13 +00:00
let
pkgs = nixpkgs.legacyPackages.${system};
atauPkgs = {
2023-06-21 23:16:00 +00:00
atau-wallpapers = pkgs.callPackage ./atau-wallpapers/default.nix { };
theme-platinum9 = pkgs.callPackage ./theme-platinum9/default.nix { };
};
2023-06-21 23:36:13 +00:00
in
{
packages = rec {
default = atauPkgs.theme-platinum9;
} // atauPkgs;
overlay = final: prev: { } // atauPkgs;
});
2023-06-18 21:17:40 +00:00
}