NIX_System_Configurations/laptop/configuration.nix

12 lines
146 B
Nix

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