nix-config/hosts/desktop/default.nix
2024-11-16 12:06:32 +01:00

24 lines
468 B
Nix

{ pkgs, hostname, ... }:
{
networking.hostName = hostname;
imports = [
./boot.nix
./nfs-client.nix
./nix-ld.nix
./printers.nix
];
nixpkgs.config.packageOverrides = pkgs: {
technic-launcher = pkgs.callPackage ../../modules/technic-launcher {};
};
environment.systemPackages = with pkgs; [
technic-launcher
];
programs.gamemode.enable = true;
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
}