nixos/machines/Behemoth/configuration.nix

19 lines
303 B
Nix
Raw Normal View History

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