From e7da0d538fa1f709fe295110976ebae0329fa024 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 26 Oct 2024 13:56:18 -0700 Subject: hosts: initialise simple kioku configuration --- hosts/kioku/default.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 hosts/kioku/default.nix (limited to 'hosts/kioku/default.nix') diff --git a/hosts/kioku/default.nix b/hosts/kioku/default.nix new file mode 100644 index 0000000..88cacb9 --- /dev/null +++ b/hosts/kioku/default.nix @@ -0,0 +1,36 @@ +{ + inputs, + outputs, + secrets, + self, + kansaiPkgs, + lib, +}: +{ + flake.nixosConfigurations.kioku = + let + pkgs = + (kansaiPkgs + { + } + )."aarch64-linux"; + in + lib.nixosSystem { + inherit pkgs; + + modules = [ + inputs.raspberry-pi-nix.nixosModules.raspberry-pi + ./configuration.nix + ./hardware-configuration.nix + ]; + + specialArgs = { + inherit + inputs + outputs + secrets + self + ; + }; + }; +} -- cgit v1.2.3