dev: add overlays again?

This commit is contained in:
NotAShelf 2023-03-29 17:43:02 +03:00
parent 686fa87c8f
commit e4d0f57c7b
No known key found for this signature in database
GPG Key ID: F0D14CCB5ED5AA22
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,7 @@
};
nixosModules.default = {
home-manager.sharedModules = [./lib/hm-module.];
home-manager.sharedModules = [./lib/hm-module.nix];
nixpkgs.overlays = [
inputs.tidalcycles.overlays.default
inputs.self.overlays.default
@ -43,6 +43,10 @@
homeManagerModules.default = {
imports = [./lib/hm-module.nix];
nixpkgs.overlays = [
inputs.tidalcycles.overlays.default
inputs.self.overlays.default
];
};
};