per device specific hostname

This commit is contained in:
2023-11-08 23:35:23 +01:00
parent 21fed4e5d1
commit af270f5fae
3 changed files with 12 additions and 8 deletions

11
laptop/configuration.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, lib, ... }:
{
imports =
[
./hardware-configuration.nix
];
# hostname
networking.hostName = "laptop-luki";
}