nixos-configs/nixos/desktop.nix
Pim Kunis 4fb55a69b7 Enable nvidia GPU
Update flake inputs
2025-02-25 21:30:07 +01:00

25 lines
455 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf (builtins.elem "desktop" config.deployment.tags) {
programs.ssh.startAgent = true;
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
services = {
xserver.enable = true;
printing.enable = true;
pipewire.enable = true;
tailscale = {
useRoutingFeatures = "client";
extraSetFlags = ["--accept-routes"];
};
};
};
}