2023-06-14 23:43:19 +02:00
|
|
|
{ config, lib, pkgs, stockholm, ... }:
|
2015-08-23 02:48:35 +02:00
|
|
|
|
|
|
|
# stuff for the main laptop
|
|
|
|
# this is pretty much nice-to-have and does
|
|
|
|
# not fit into base-gui
|
2016-02-11 17:06:50 +01:00
|
|
|
# TODO split generic desktop stuff and laptop-specifics like lidswitching
|
2015-08-23 02:48:35 +02:00
|
|
|
|
2016-08-02 15:40:41 +02:00
|
|
|
let
|
|
|
|
window-manager = "awesome";
|
|
|
|
user = config.krebs.build.user.name;
|
|
|
|
in {
|
2015-12-13 13:52:15 +01:00
|
|
|
imports = [
|
2017-05-12 11:29:46 +02:00
|
|
|
./gui/base.nix
|
2023-06-03 15:34:41 +02:00
|
|
|
# ./gui/look-up.nix
|
2015-12-13 13:52:15 +01:00
|
|
|
./fetchWallpaper.nix
|
2015-12-16 12:29:24 +01:00
|
|
|
./zsh-user.nix
|
2017-03-01 15:50:58 +01:00
|
|
|
./tools/core.nix
|
|
|
|
./tools/core-gui.nix
|
2018-04-04 14:44:06 +02:00
|
|
|
./gui/automatic-diskmount.nix
|
2015-12-13 13:52:15 +01:00
|
|
|
];
|
2016-02-18 08:37:40 +01:00
|
|
|
|
|
|
|
users.users.${config.krebs.build.user.name}.extraGroups = [ "dialout" ];
|
|
|
|
|
2020-03-13 10:46:05 +01:00
|
|
|
location.latitude = 48.7;
|
|
|
|
location.longitude = 9.1;
|
|
|
|
|
2015-08-23 02:48:35 +02:00
|
|
|
}
|