From f88a8f53c9cd3354460aa8dfbf3c0611b51c4f29 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 19 Jun 2021 12:53:04 -0400 Subject: [PATCH] Include SSH module --- README.org | 8 +++++++- flake.nix | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 626a5ba..c50ed2f 100644 --- a/README.org +++ b/README.org @@ -381,6 +381,7 @@ nixos = nixpkgs.lib.nixosSystem { modules = [ ./hosts/nixos <> + <> <> <> <> @@ -488,6 +489,7 @@ acernitro = nixpkgs.lib.nixosSystem { modules = [ ./hosts/acernitro <> + <> <> <> <> @@ -612,6 +614,7 @@ raspberry = nixpkgs.lib.nixosSystem { modules = [ ./hosts/raspberry <> + <> <> <> <> @@ -726,6 +729,7 @@ homecloud = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ ./hosts/homecloud + <> <> <> <> @@ -775,6 +779,7 @@ zero-one = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ ./hosts/zero-one + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ]; @@ -789,7 +794,8 @@ zero-two = nixpkgs.lib.nixosSystem { system = "armv7l-linux"; specialArgs = { inherit inputs; }; modules = [ - ./hosts/zero-one + ./hosts/zero-two + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ]; diff --git a/flake.nix b/flake.nix index ca331bb..f2985d8 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,7 @@ modules = [ ./hosts/nixos ./modules/x11.nix + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix inputs.home-manager.nixosModules.home-manager { @@ -44,6 +45,7 @@ modules = [ ./hosts/acernitro ./modules/x11.nix + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ./modules/nvidia.nix @@ -71,6 +73,7 @@ modules = [ ./hosts/raspberry ./modules/x11.nix + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix inputs.home-manager.nixosModules.home-manager { @@ -93,6 +96,7 @@ specialArgs = { inherit inputs; }; modules = [ ./hosts/homecloud + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ./modules/docker.nix @@ -104,6 +108,7 @@ specialArgs = { inherit inputs; }; modules = [ ./hosts/zero-one + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ]; @@ -112,7 +117,8 @@ system = "armv7l-linux"; specialArgs = { inherit inputs; }; modules = [ - ./hosts/zero-one + ./hosts/zero-two + ./modules/ssh.nix ./modules/flakes.nix ./modules/cachix.nix ];