10 lines
148 B
Nix
10 lines
148 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.computerName = "macbook";
|
|
networking.hostName = "macbook";
|
|
|
|
imports = [
|
|
../system-default.nix
|
|
];
|
|
}
|