mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
Gabriel Arazas
e74640cf16
This makes it possible for easier way to contribute with non-flakes usage.
18 lines
513 B
Nix
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 { };
|
|
}
|