nixos/machines/Lilim/configuration.nix

17 lines
283 B
Nix
Raw Normal View History

{ pkgs, ... }:
2019-02-26 13:44:40 +01:00
{
imports = [
./hardware-configuration.nix
];
2019-09-05 15:24:54 +02:00
programs.gnome-terminal.enable = true;
services.cron.enable = false;
2019-08-23 14:43:45 +02:00
networking.dhcpcd.extraConfig = "noarp";
2019-09-29 08:09:26 +02:00
environment.systemPackages = with pkgs; [ xdiskusage ];
2019-09-29 08:09:26 +02:00
system.stateVersion = "19.09";
2019-02-26 13:44:40 +01:00
}