2015-08-23 00:48:35 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
# stuff for the main laptop
|
|
|
|
# this is pretty much nice-to-have and does
|
|
|
|
# not fit into base-gui
|
2016-02-11 16:06:50 +00:00
|
|
|
# TODO split generic desktop stuff and laptop-specifics like lidswitching
|
2015-08-23 00:48:35 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
{
|
2015-12-13 12:52:15 +00:00
|
|
|
imports = [
|
|
|
|
./base-gui.nix
|
|
|
|
./fetchWallpaper.nix
|
2015-12-16 11:29:24 +00:00
|
|
|
./zsh-user.nix
|
2015-12-13 12:52:15 +00:00
|
|
|
];
|
2015-08-23 00:48:35 +00:00
|
|
|
environment.systemPackages = with pkgs;[
|
|
|
|
vlc
|
|
|
|
firefox
|
|
|
|
chromium
|
|
|
|
keepassx
|
2015-11-14 00:50:24 +00:00
|
|
|
ntfs3g
|
2016-02-11 16:06:50 +00:00
|
|
|
at_spi2_core
|
|
|
|
gnome3.dconf
|
2015-08-25 14:56:58 +00:00
|
|
|
virtmanager
|
2016-02-11 16:06:50 +00:00
|
|
|
krebspaste
|
2015-08-23 00:48:35 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
services.redshift = {
|
|
|
|
enable = true;
|
|
|
|
latitude = "48.7";
|
|
|
|
longitude = "9.1";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|