rose-pine-nix/flake.nix

16 lines
287 B
Nix
Raw Normal View History

2023-03-26 18:14:56 -07:00
{
2023-03-27 15:49:50 -07:00
description = "Soothing pastel theme for Nix";
2023-04-13 20:35:15 -07:00
inputs = {
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = _: {
2023-03-27 15:49:50 -07:00
nixosModules.default = import ./nixos;
homeManagerModules.default = import ./home-manager;
};
2023-03-26 18:14:56 -07:00
}