nixos/machines/Behemoth/configuration.nix

17 lines
283 B
Nix
Raw Normal View History

2019-09-23 04:09:01 +02:00
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
2019-09-23 21:04:35 +02:00
services.cron.enable = false;
programs.gnome-terminal.enable = true;
2019-09-23 04:09:01 +02:00
networking.dhcpcd.extraConfig = "noarp";
environment.systemPackages = with pkgs; [ xdiskusage ];
system.stateVersion = "19.03";
}