stockholm/lass/1systems/littleT/config.nix

31 lines
632 B
Nix
Raw Normal View History

2017-11-12 23:16:02 +00:00
with import <stockholm/lib>;
{ config, pkgs, ... }:
{
imports = [
<stockholm/lass>
<stockholm/lass/2configs/retiolum.nix>
2018-12-16 15:31:57 +00:00
<stockholm/lass/2configs/blue-host.nix>
2021-01-23 19:23:56 +00:00
<stockholm/lass/2configs/green-host.nix>
2019-03-23 15:06:39 +00:00
<stockholm/lass/2configs/syncthing.nix>
2017-11-12 23:16:02 +00:00
];
2018-12-16 08:33:03 +00:00
networking.networkmanager.enable = true;
networking.wireless.enable = mkForce false;
2017-11-12 23:16:02 +00:00
time.timeZone = "Europe/Berlin";
hardware.trackpoint = {
enable = true;
sensitivity = 220;
speed = 0;
emulateWheel = true;
};
services.logind.extraConfig = ''
HandleLidSwitch=ignore
'';
krebs.build.host = config.krebs.hosts.littleT;
}