tree-wide: stop passing hostname around

This commit is contained in:
Primrose 2025-12-28 20:09:38 +01:00
parent 01e50baa5c
commit 3936988898
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 3 additions and 21 deletions

View file

@ -25,7 +25,7 @@ in
# #
# hostname # hostname
# #
{ _module.args = { inherit hostname; }; } { networking.hostName = hostname; }
# #
# nixpkgs # nixpkgs
@ -86,11 +86,6 @@ in
}; };
hm.imports = [ hm.imports = [
#
# hostname
#
{ _module.args = { inherit hostname; }; }
# #
# home modules # home modules
# #

View file

@ -28,7 +28,7 @@ in
# #
# hostname # hostname
# #
{ _module.args = { inherit hostname; }; } { networking.hostName = hostname; }
# #
# nixpkgs # nixpkgs
@ -97,11 +97,6 @@ in
}; };
hm.imports = [ hm.imports = [
#
# hostname
#
{ _module.args = { inherit hostname; }; }
# #
# home modules # home modules
# #

View file

@ -25,7 +25,7 @@ in
# #
# hostname # hostname
# #
{ _module.args = { inherit hostname; }; } { networking.hostName = hostname; }
# #
# nixpkgs # nixpkgs
@ -147,11 +147,6 @@ in
}; };
hm.imports = [ hm.imports = [
#
# hostname
#
{ _module.args = { inherit hostname; }; }
# #
# home modules # home modules
# #

View file

@ -1,7 +1,4 @@
{ hostname, ... }:
{ {
networking.hostName = hostname;
services.openssh = { services.openssh = {
enable = true; enable = true;
settings = { settings = {