summaryrefslogtreecommitdiff
path: root/hosts/kioku/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-27 15:52:29 -0700
committerFuwn <[email protected]>2024-10-27 15:52:29 -0700
commit1124ccd4ccf26f887b26f4504d4a03ec46c3d637 (patch)
tree1946ee3d1e9ec8b8126fdbeee427151bcde635d8 /hosts/kioku/default.nix
parenthosts: initialise simple kioku configuration (diff)
downloadnixos-config-1124ccd4ccf26f887b26f4504d4a03ec46c3d637.tar.xz
nixos-config-1124ccd4ccf26f887b26f4504d4a03ec46c3d637.zip
lock: tsutsumi
Diffstat (limited to 'hosts/kioku/default.nix')
-rw-r--r--hosts/kioku/default.nix42
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
+ ;
};
+ };
}