dotfiles/nixos/boxes/foureighty/default.nix
2021-05-30 22:41:55 +01:00

44 lines
950 B
Nix

{ config, pkgs, inputs, ... }:
{
networking.hostName = "foureighty";
imports = [
./hardware-configuration.nix
../../boot.nix
../../common.nix
../../gfx-intel.nix
../../zerotier.nix
../../distributed-builds.nix
../../libvirt.nix
../../backups.nix
../../gui
../../i3
../../git
../../mercurial
];
boot.kernelPackages = pkgs.linuxPackages_latest_hardened;
boot.loader.grub = {
enable = true;
version = 2;
useOSProber = true;
memtest86.enable = true;
splashImage = ./boot.png;
};
time.hardwareClockInLocalTime = true;
time.timeZone = "Europe/London";
hardware.trackpoint.enable = true;
services.hardware.bolt.enable = true;
services.fprintd = {
enable = true;
};
fonts.fontconfig.enable = true;
programs.steam.enable = true;
home-manager.users.cyryl = {...}: {
home.packages = [ inputs.bisq.legacyPackages."x86_64-linux".bisq-desktop ];
};
}