diff options
| author | Fuwn <[email protected]> | 2024-10-26 13:56:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-26 13:56:18 -0700 |
| commit | e7da0d538fa1f709fe295110976ebae0329fa024 (patch) | |
| tree | 203055e9cef2090ff55cc0f0edb754e812fc8f31 /hosts/kioku/default.nix | |
| parent | home: fill out mpv configuration (diff) | |
| download | nixos-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.nix | 36 |
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 + ; + }; + }; +} |