dotfiles/nixos/boxes/foureighty/default.nix
2021-03-19 09:42:43 +00:00

48 lines
1 KiB
Nix

{ config, pkgs, ... }:
{
networking.hostName = "foureighty";
imports = [
<home-manager/nixos>
./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.unstable.linuxPackages_latest_hardened;
time.hardwareClockInLocalTime = true;
time.timeZone = "Europe/London";
hardware.trackpoint.enable = true;
services.hardware.bolt.enable = true;
services.fprintd = {
enable = true;
package = pkgs.unstable.fprintd;
};
home-manager.users.cyryl = {...}: {
imports = [
../../home-manager
];
home.stateVersion = config.system.stateVersion;
nixpkgs.overlays = config.nixpkgs.overlays;
nixpkgs.config = config.nixpkgs.config;
home.file.".config/i3/status.toml".source = ../../../.config/i3/status-double-bat.toml;
};
fonts.fontconfig.enable = true;
programs.steam.enable = true;
}