All checks were successful
Build iso when a new version is pushed / test (push) Successful in 2m10s
42 lines
1.5 KiB
Nix
42 lines
1.5 KiB
Nix
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# desktop.nix :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2025/09/06 00:57:04 by tomoron #+# #+# #
|
|
# Updated: 2025/09/06 00:57:05 by tomoron ### ########.fr #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
|
|
{ config, lib, inputs, pkgs, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [ "nvidia-drm-modset=1" ];
|
|
environment.systemPackages = with pkgs; [
|
|
lm_sensors # can be user (and global)
|
|
];
|
|
|
|
networking.hostName = "nixos-fixe";
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
boot.kernelModules = [ "kvm-intel" "nvidia" ];
|
|
mods.displayManager.enable = true;
|
|
|
|
hardware.nvidia = {
|
|
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
|
open = true;
|
|
|
|
prime.nvidiaBusId = "PCI:1:0:0";
|
|
prime.intelBusId = "PCI:0:2:0";
|
|
prime.sync.enable = true;
|
|
|
|
modesetting.enable = true;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
}
|