chore(refactor): move modules to their own folder

This commit is contained in:
seth 2023-04-13 23:40:20 -04:00
parent 8c3f98e64c
commit 4c8a1756b4
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86
5 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
description = "Soothing pastel theme for Nix"; description = "Soothing pastel theme for Nix";
outputs = { self }: { outputs = { self }: {
nixosModules.default = import ./nixos; nixosModules.default = import ./modules/nixos;
homeManagerModules.default = import ./home-manager; homeManagerModules.default = import ./modules/home-manager;
}; };
} }