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 = {
|
2023-06-02 12:25:15 -07:00
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
2023-04-13 20:35:15 -07:00
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-06-02 12:25:15 -07:00
|
|
|
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
|
|
|
}
|