mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-14 12:17:21 +00:00
16 lines
390 B
Nix
16 lines
390 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hyprland.nix
|
|
./default.nix
|
|
../users/willem/home/linux.nix
|
|
../modules/zerotier.nix
|
|
];
|
|
boot.kernelModules = ["vhci-hcd" "usbip-core" "usbip-vudc" "usbip-host"];
|
|
environment.systemPackages = [pkgs.linuxPackages.usbip];
|
|
powerManagement.cpuFreqGovernor = "performance";
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|