mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
17 lines
228 B
Nix
17 lines
228 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
"console=tty0"
|
|
"clk_ignore_unused"
|
|
"pd_ignore_unused"
|
|
];
|
|
|
|
networking.hostName = "drack";
|
|
|
|
}
|