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