27 lines
581 B
Nix
27 lines
581 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
networking.hostName = "thinky";
|
||
|
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../boot.nix
|
||
|
../../common.nix
|
||
|
../../gfx-intel.nix
|
||
|
../../i3
|
||
|
../../tailscale.nix
|
||
|
./tailscale-skinnyv.nix
|
||
|
../../distributed-builds.nix
|
||
|
../../gui
|
||
|
../../git
|
||
|
../../backups.nix
|
||
|
];
|
||
|
|
||
|
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
time.timeZone = "Europe/Warsaw";
|
||
|
|
||
|
services.thermald.enable = true;
|
||
|
fonts.fontconfig.enable = true;
|
||
|
}
|