From e646f99ea91a7cd396e9a8e41ce510c10460af61 Mon Sep 17 00:00:00 2001 From: Simon Parri Date: Wed, 14 May 2025 15:20:22 -0500 Subject: hosts/muspell: Add initial configuration --- hosts/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'hosts/default.nix') diff --git a/hosts/default.nix b/hosts/default.nix index deba17c..015e307 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -1,4 +1,4 @@ -{ nixpkgs }: +{ nixpkgs, mobile-nixos }: let mkHost = system: hostname: modules: { @@ -6,7 +6,7 @@ let inherit system; modules = [ ../modules ../users ] ++ modules; specialArgs = { - inherit hostname nixpkgs; + inherit hostname nixpkgs mobile-nixos; }; }; }; @@ -27,7 +27,7 @@ let (system: hostnames: map (h: mkHost system h [./${h}]) hostnames) systemsHosts))); - + hostsImport = file: import file { inherit nixpkgs mkHost hosts; @@ -37,5 +37,8 @@ hosts { "x86_64-linux" = [ "thyme" ]; + "aarch64-linux" = [ + "muspell" + ]; } // hostsImport ./ades -- cgit v1.2.3