mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2024-12-22 15:17:28 +01:00
19 lines
299 B
Nix
19 lines
299 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.base.enable = false;
|
|
|
|
profiles.zsh.enable = true;
|
|
}
|