nixos-config/2configs/main-laptop.nix

28 lines
611 B
Nix
Raw Normal View History

2023-06-14 23:43:19 +02:00
{ config, lib, pkgs, stockholm, ... }:
# 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
let
window-manager = "awesome";
user = config.krebs.build.user.name;
in {
imports = [
2017-05-12 11:29:46 +02:00
./gui/base.nix
2023-06-03 15:34:41 +02:00
# ./gui/look-up.nix
./fetchWallpaper.nix
./zsh-user.nix
./tools/core.nix
./tools/core-gui.nix
./gui/automatic-diskmount.nix
];
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;
}