21 lines
295 B
Nix
21 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
|
||
|
];
|
||
|
}
|