From b7d9320a6e9c6346cf5ec89b504044101f3b123e Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 28 Dec 2025 02:04:31 +0100 Subject: [PATCH] feat: adds `april` host --- flake.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index 2367a0e..9424688 100644 --- a/flake.nix +++ b/flake.nix @@ -173,6 +173,16 @@ inherit self inputs username; }; }; + april = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + (import ./hosts/april) + ]; + specialArgs = { + host = "april"; + inherit self inputs username; + }; + }; }; }; }