Merge pull request #3 from getchoo/modules

restructure/rename modules
This commit is contained in:
Sam Nystrom 2023-04-14 09:16:12 -04:00 committed by GitHub
commit fe58d0bc42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,5 @@
{ {
description = "Soothing pastel theme for Nix"; description = "Soothing pastel theme for Nix";
inputs = { inputs = {
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat";
@ -9,7 +8,7 @@
}; };
outputs = _: { outputs = _: {
nixosModules.default = import ./nixos; nixosModules.catppuccin = import ./nixos;
homeManagerModules.default = import ./home-manager; homeManagerModules.catppuccin = import ./home-manager;
}; };
} }