stockholm/makefu/2configs/main-laptop.nix

34 lines
575 B
Nix
Raw Normal View History

{ 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
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
{
imports = [
./base-gui.nix
./fetchWallpaper.nix
./zsh-user.nix
];
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
];
services.redshift = {
enable = true;
latitude = "48.7";
longitude = "9.1";
};
}