hostname fixed

This commit is contained in:
Lyn 2024-10-19 04:21:40 +02:00
parent 5962560c87
commit cfe7efce10
3 changed files with 3 additions and 3 deletions

View file

@ -51,10 +51,10 @@
imports
];
};
"wg_gateway" = nixpkgs.lib.nixosSystem {
"wg-gateway" = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
./hosts/wg_gateway
./hosts/wg-gateway
imports
];
};

View file

@ -13,7 +13,7 @@
lyn.profiles.base.enable = true;
lyn.users.lyn.enable = true;
networking.hostName = "wg_gateway"; # Define your hostname.
networking.hostName = "wg-gateway"; # Define your hostname.
system.stateVersion = "24.05";
}