dotfiles/nixos/boxes/thinky/default.nix

24 lines
431 B
Nix
Raw Normal View History

2021-09-11 20:32:23 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "thinky";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../gfx-intel.nix
../../i3
../../tailscale.nix
2021-09-11 20:38:12 +01:00
./tailscale-thinky.nix
2021-09-11 20:32:23 +01:00
../../distributed-builds.nix
../../gui
../../git
../../backups.nix
];
time.timeZone = "Europe/Warsaw";
services.thermald.enable = true;
fonts.fontconfig.enable = true;
}