summaryrefslogtreecommitdiff
path: root/hosts/kioku/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-26 13:56:18 -0700
committerFuwn <[email protected]>2024-10-26 13:56:18 -0700
commite7da0d538fa1f709fe295110976ebae0329fa024 (patch)
tree203055e9cef2090ff55cc0f0edb754e812fc8f31 /hosts/kioku/default.nix
parenthome: fill out mpv configuration (diff)
downloadnixos-config-e7da0d538fa1f709fe295110976ebae0329fa024.tar.xz
nixos-config-e7da0d538fa1f709fe295110976ebae0329fa024.zip
hosts: initialise simple kioku configuration
Diffstat (limited to 'hosts/kioku/default.nix')
-rw-r--r--hosts/kioku/default.nix36
1 files changed, 36 insertions, 0 deletions
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
+ ;
+ };
+ };
+}