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

18 lines
248 B
Nix
Raw Permalink Normal View History

2024-11-10 17:54:08 -05:00
{ pkgs, ... }:
{
imports = [
./hardware.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "woodpecker";
2024-11-10 17:54:08 -05:00
environment.systemPackages = with pkgs; [
mesa
];
}