dotfiles/logical/jarvis.nix

24 lines
595 B
Nix
Raw Normal View History

2017-04-08 23:20:11 +02:00
{ config, pkgs, lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
2017-02-02 17:22:03 +01:00
../physical/xps9360.nix
../roles/common.nix
2017-02-02 16:31:19 +01:00
../roles/workstation.nix
];
networking.hostName = "jarvis"; # Define your hostname.
# The NixOS release to be compatible with for stateful data such as databases.
system.stateVersion = "17.09";
#networking.enableIPv6 = lib.mkOverride 30 true;
services.xserver.displayManager.sessionCommands = ''
${pkgs.xorg.xrandr}/bin/xrandr --dpi 192
'';
virtualisation.virtualbox.host.enable = pkgs.lib.mkOverride 30 false;
}