forked from nico/dots
11 lines
156 B
Nix
11 lines
156 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "bocchi";
|
|
|
|
hardware.graphics.enable = true;
|
|
}
|