nixos/machines/Lilim/configuration.nix

15 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";
}