dotfiles/nixos/boxes/skinnyv/default.nix

33 lines
693 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
{
networking.hostName = "skinnyv";
2020-01-03 14:28:53 +00:00
2020-07-25 11:57:23 +01:00
imports = [
2021-02-28 14:23:28 +00:00
./hardware-configuration.nix
2021-09-22 13:41:05 +01:00
./tailscale-skinnyv.nix
2020-07-25 11:57:23 +01:00
../../boot.nix
../../common.nix
../../gfx-intel.nix
2020-08-16 12:14:31 +01:00
../../i3
2021-06-12 16:38:27 +01:00
../../tailscale.nix
2020-07-25 11:57:23 +01:00
../../distributed-builds.nix
../../gui
../../git
2021-04-02 16:31:38 +01:00
../../backups.nix
2020-07-25 11:57:23 +01:00
];
2021-02-28 14:26:18 +00:00
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
2021-04-11 12:15:39 +01:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2021-02-28 14:26:18 +00:00
time.timeZone = "Europe/London";
2019-04-26 11:30:22 +01:00
2021-07-18 18:53:01 +01:00
services.thermald.enable = true;
2021-02-28 14:26:18 +00:00
fonts.fontconfig.enable = true;
2021-09-18 10:18:35 +01:00
home-manager.users.cyryl = {...}: {
imports = [
../../home-manager/programs/kitty.nix
];
};
2021-02-28 14:26:18 +00:00
}
2021-09-18 10:18:35 +01:00