32 lines
693 B
Nix
32 lines
693 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
networking.hostName = "skinnyv";
|
|
|
|
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/London";
|
|
|
|
services.thermald.enable = true;
|
|
fonts.fontconfig.enable = true;
|
|
home-manager.users.cyryl = {...}: {
|
|
imports = [
|
|
../../home-manager/programs/kitty.nix
|
|
];
|
|
};
|
|
}
|
|
|