From 6e2e97d78345b6ba60c914ecd8dfb108c6b8af27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Krop=C3=A1=C4=8Dek?= Date: Thu, 3 Oct 2024 14:18:47 +0200 Subject: [PATCH] fix fmt --- flake.nix | 12 +++++++++--- nixosModules/system/default.nix | 1 + 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index c883d4e..cb0fcdd 100644 --- a/flake.nix +++ b/flake.nix @@ -18,10 +18,16 @@ outputs = inputs@{ self, nixpkgs, ... }: let - hosts = ["work-ntb" "lenar"]; - in { + hosts = [ + "work-ntb" + "lenar" + ]; + in + { # Please replace my-nixos with your hostname - nixosConfigurations = nixpkgs.lib.genAttrs hosts (host: nixpkgs.lib.nixosSystem { + nixosConfigurations = nixpkgs.lib.genAttrs hosts ( + host: + nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./hosts/${host} diff --git a/nixosModules/system/default.nix b/nixosModules/system/default.nix index e69de29..c915eb0 100644 --- a/nixosModules/system/default.nix +++ b/nixosModules/system/default.nix @@ -0,0 +1 @@ +{ ... }: { }