atau-nixpkgs/flake.nix

27 lines
686 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 23:52:04 +00:00
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
atauPkgs = {
2024-08-01 00:29:50 +00:00
atau-wallpapers = pkgs.callPackage ./atau-wallpapers { };
theme-platinum9 = pkgs.callPackage ./theme-platinum9 { };
2024-08-01 00:13:28 +00:00
gtk-theme-mac-os-9 = pkgs.callPackage ./gtk-theme-mac-os-9 { };
2024-08-01 00:29:50 +00:00
nineicons-redux = pkgs.callPackage ./nineicons-redux { };
2023-06-21 23:52:04 +00:00
};
in
{
packages.${system} = {
default = atauPkgs.theme-platinum9;
} // atauPkgs;
2023-06-21 23:36:13 +00:00
2024-08-01 00:13:28 +00:00
overlays.default = final: prev: {
atau-pkgs = atauPkgs;
};
2023-06-21 23:52:04 +00:00
};
2023-06-18 21:17:40 +00:00
}