12 lines
146 B
Nix
12 lines
146 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# hostname
|
|
networking.hostName = "laptop-luki";
|
|
}
|