12 lines
173 B
Nix
12 lines
173 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./disko.nix
|
|
# ./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "bocchi";
|
|
|
|
hardware.graphics.enable = true;
|
|
}
|