nixos-config/subprojects/bahaghari/flake.nix
Gabriel Arazas e74640cf16
bahaghari: use npins for pinning nixpkgs branches
This makes it possible for easier way to contribute with non-flakes
usage.
2024-06-05 21:16:01 +08:00

18 lines
513 B
Nix

{
description = "Specialized set of Nix modules for generating and applying themes.";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
};
outputs = inputs@{ self, ... }:
let
systems = inputs.flake-utils.lib.defaultSystems;
sources = import ./npins;
in inputs.flake-utils.lib.eachSystem systems
(system: {
devShells.default =
import ./shell.nix { pkgs = import sources.nixos-stable { inherit system; }; };
}) // import ./default.nix { };
}