From f4368190f65902ef4e539774623afa25b2831b87 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 29 Dec 2024 19:33:57 +0100 Subject: Add first iteration of NixOS specimen service module Signed-off-by: Mel --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'flake.nix') 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 ]; }; }; -- cgit 1.4.1