nixos/machines/Lilim/configuration.nix

17 lines
276 B
Nix
Raw Normal View History

{ pkgs, ... }:
2019-02-26 13:44:40 +01:00
{
imports = [
./hardware-configuration.nix
];
services = {
gnome3.gnome-terminal-server.enable = true;
2019-05-08 20:18:52 +02:00
cron.enable = false;
2019-02-26 13:44:40 +01:00
};
environment.systemPackages = with pkgs; [ firmware_surface xdiskusage ];
system.stateVersion = "19.03";
2019-02-26 13:44:40 +01:00
}