blob: 32f194e6b8136856825027cb65db015c8b734a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ config, lib, pkgs, ... }:
# stuff for the main laptop
# this is pretty much nice-to-have and does
# not fit into base-gui
# TODO split generic desktop stuff and laptop-specifics like lidswitching
with lib;
{
imports = [
./base-gui.nix
./fetchWallpaper.nix
./zsh-user.nix
];
environment.systemPackages = with pkgs;[
vlc
firefox
chromium
keepassx
ntfs3g
at_spi2_core
gnome3.dconf
virtmanager
krebspaste
];
services.redshift = {
enable = true;
latitude = "48.7";
longitude = "9.1";
};
}
|