nix-config/hosts/workstations/woodpecker/default.nix

20 lines
295 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking = {
hostName = "woodpecker";
networkmanager.enable = true;
};
environment.systemPackages = with pkgs; [
mesa
];
}