nixos/machines/Lilim/configuration.nix
2019-09-23 23:33:22 +02:00

16 lines
300 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
programs.gnome-terminal.enable = true;
services.cron.enable = false;
networking.dhcpcd.extraConfig = "noarp";
environment.systemPackages = with pkgs; [ firmware_surface xdiskusage ];
system.stateVersion = "19.03";
}