dotfiles/graphical.nix

48 lines
997 B
Nix
Raw Normal View History

2015-03-18 02:24:24 +01:00
{ config, lib, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver = {
enable = true;
synaptics = {
twoFingerScroll = true;
# inverted scrolling
additionalOptions = ''
Option "HorizScrollDelta" "-107"
Option "VertScrollDelta" "-107"
'';
};
layout = "us";
displayManager.slim.defaultUser = "yorick";
# xkbOptions = "eurosign:e";
};
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
environment.systemPackages = with pkgs; [
slock
];
security.setuidPrograms = [ "slock" ];
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
corefonts # Micrsoft free fonts
inconsolata # monospaced
source-code-pro
ubuntu_font_family # Ubuntu fonts
];
};
2015-03-18 02:45:48 +01:00
services.redshift = {
enable = true;
latitude = "51.8";
longitude = "5.8";
temperature = {
day = 6500;
night = 5500;
};
};
2015-03-18 02:24:24 +01:00
}