blob: 8d2c8213e438396d68e033022d8c77620798bf63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ config, lib, pkgs, ... }:
# stuff for the main laptop
# this is pretty much nice-to-have and does
# not fit into base-gui
with lib;
{
imports = [ ./base-gui.nix ];
environment.systemPackages = with pkgs;[
vlc
firefox
chromium
keepassx
];
services.redshift = {
enable = true;
latitude = "48.7";
longitude = "9.1";
};
}
|