nixos-config/subprojects/bahaghari/flake.nix

18 lines
513 B
Nix
Raw Normal View History

{
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;
2024-02-25 10:20:13 +00:00
in inputs.flake-utils.lib.eachSystem systems
(system: {
devShells.default =
import ./shell.nix { pkgs = import sources.nixos-stable { inherit system; }; };
2024-02-25 10:20:13 +00:00
}) // import ./default.nix { };
}