atau-nixpkgs/flake.nix

28 lines
750 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
overlay = import ./overlay.nix;
pkgs = import nixpkgs { inherit system; overlays = [ overlay ]; };
# test = pkgs.adwaita-icon-theme;
# atauPkgs = {
# atau-wallpapers = pkgs.callPackage ./atau-wallpapers { };
# # theme-platinum9 = pkgs.callPackage ./theme-platinum9 {
# # adwaita-icon-theme = test;
# # };
# gtk-theme-mac-os-9 = pkgs.callPackage./gtk-theme-mac-os-9 { };
# nineicons-redux = pkgs.callPackage./nineicons-redux { };
# };
in
{
packages.${system} = pkgs;
overlays.default = overlay;
};
}