dotfiles/nixos/boxes/thinky/default.nix
2021-09-11 22:49:03 +02:00

24 lines
431 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "thinky";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../gfx-intel.nix
../../i3
../../tailscale.nix
./tailscale-thinky.nix
../../distributed-builds.nix
../../gui
../../git
../../backups.nix
];
time.timeZone = "Europe/Warsaw";
services.thermald.enable = true;
fonts.fontconfig.enable = true;
}