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 @@ +{ ... }: { }