diff options
author | Emile <git@emile.space> | 2024-08-02 23:51:43 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-08-02 23:51:43 +0200 |
commit | 4646ea5fb511acdeff0f3d2ea404622153bf2187 (patch) | |
tree | 423e887c7ca9fd0efe473d5ffd1762fb78a24ef4 /flake.nix | |
parent | 9a8cd25bd0de2c52f3523c3056e562dc5159768f (diff) |
added custom modules to the flake
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index a5a59d9..b17cb78 100644 --- a/flake.nix +++ b/flake.nix @@ -122,6 +122,11 @@ nixosConfigurations = helper.mapToNixosConfigurations self.hosts; darwinConfigurations = helper.mapToDarwinConfigurations self.hosts; + nixosModules = { + emile = import ./nix/modules; + default = self.nixosModules.emile; + }; + overlays = { emile = import ./nix/pkgs/overlay.nix; default = self.overlays.emile; |