rose-pine-nix/flake.nix

16 lines
383 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 = {
nixpkgs.url = "nixpkgs/nixos-unstable";
2023-04-13 20:35:15 -07:00
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { nixpkgs, ... }: {
nixosModules.catppuccin = import ./modules/nixos nixpkgs;
homeManagerModules.catppuccin = import ./modules/home-manager nixpkgs;
2023-03-27 15:49:50 -07:00
};
2023-03-26 18:14:56 -07:00
}