17 lines
266 B
Nix
17 lines
266 B
Nix
|
{ config, lib, pkgs, overlays, ... }:
|
||
|
{
|
||
|
nixpkgs.overlays = overlays;
|
||
|
|
||
|
imports = [ ../profiles ];
|
||
|
|
||
|
machine = {
|
||
|
name = "Headless";
|
||
|
eth = null;
|
||
|
wlan = null;
|
||
|
secondary-fs = null;
|
||
|
};
|
||
|
|
||
|
profiles.base.enable = true;
|
||
|
profiles.zsh.enable = true;
|
||
|
}
|