1
0
Fork 0
nixos/machines/Behemoth/configuration.nix

12 lines
189 B
Nix
Raw Normal View History

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