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