diff options
| author | Fuwn <[email protected]> | 2024-10-27 15:52:29 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-27 15:52:29 -0700 |
| commit | 1124ccd4ccf26f887b26f4504d4a03ec46c3d637 (patch) | |
| tree | 1946ee3d1e9ec8b8126fdbeee427151bcde635d8 /hosts/kioku/default.nix | |
| parent | hosts: initialise simple kioku configuration (diff) | |
| download | nixos-config-1124ccd4ccf26f887b26f4504d4a03ec46c3d637.tar.xz nixos-config-1124ccd4ccf26f887b26f4504d4a03ec46c3d637.zip | |
lock: tsutsumi
Diffstat (limited to 'hosts/kioku/default.nix')
| -rw-r--r-- | hosts/kioku/default.nix | 42 |
1 files changed, 19 insertions, 23 deletions
diff --git a/hosts/kioku/default.nix b/hosts/kioku/default.nix index 88cacb9..1e37f68 100644 --- a/hosts/kioku/default.nix +++ b/hosts/kioku/default.nix @@ -7,30 +7,26 @@ lib, }: { - flake.nixosConfigurations.kioku = - let - pkgs = - (kansaiPkgs - { - } - )."aarch64-linux"; - in - lib.nixosSystem { - inherit pkgs; + flake.nixosConfigurations.kioku = lib.nixosSystem { + pkgs = + (kansaiPkgs + { + } + )."aarch64-linux"; - modules = [ - inputs.raspberry-pi-nix.nixosModules.raspberry-pi - ./configuration.nix - ./hardware-configuration.nix - ]; + modules = [ + inputs.raspberry-pi-nix.nixosModules.raspberry-pi + ./configuration.nix + ./hardware-configuration.nix + ]; - specialArgs = { - inherit - inputs - outputs - secrets - self - ; - }; + specialArgs = { + inherit + inputs + outputs + secrets + self + ; }; + }; } |