24 lines
362 B
Nix
24 lines
362 B
Nix
|
{ 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";
|
||
|
};
|
||
|
|
||
|
}
|