14 lines
224 B
Nix
14 lines
224 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
programs.gnome-terminal.enable = true;
|
|
services.cron.enable = false;
|
|
|
|
networking.dhcpcd.extraConfig = "noarp";
|
|
|
|
system.stateVersion = "19.09";
|
|
}
|