diff options
| author | Mel <einebeere@gmail.com> | 2024-12-29 19:33:57 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-29 20:38:23 +0100 |
| commit | f4368190f65902ef4e539774623afa25b2831b87 (patch) | |
| tree | 7b4335e8b11bf8e3b7308ff2a228aad59a24b5cb /flake.nix | |
| parent | d3fe7a09b431c7f1849a69c26adfc08d0016540a (diff) | |
| download | specimen-f4368190f65902ef4e539774623afa25b2831b87.tar.zst specimen-f4368190f65902ef4e539774623afa25b2831b87.zip | |
Add first iteration of NixOS specimen service module
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 528d1de..c382f36 100644 --- a/flake.nix +++ b/flake.nix @@ -31,11 +31,14 @@ }; }); + nixosModules.default = import ./application/module.nix; + nixosConfigurations.${name} = lib.nixosSystem { system = "aarch64-linux"; specialArgs = inputs; modules = [ ./configuration/configuration.nix + self.nixosModules.default ]; }; }; |
