Separated some settings

This commit is contained in:
Aleksandr Lebedev 2024-11-20 20:33:42 +01:00
parent 24a3ba6f99
commit 2147766e07
6 changed files with 148 additions and 57 deletions

View file

@ -2,22 +2,22 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, stylix, inputs, ... }:
{ config, pkgs, stylix, hostname, inputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
./firefox.nix
./libvirt.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.canTouchEfiVariables = if hostname == "nixosbtw" then true else false;
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "nixosbtw"; # Define your hostname.
networking.hostName = hostname;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -151,8 +151,8 @@
vscode-fhs
# development
clang_18
dotnetCorePackages.sdk_8_0_3xx
#clang_18
#dotnetCorePackages.sdk_8_0_3xx
];
programs.kdeconnect.enable = true;
programs.kdeconnect.package = pkgs.kdePackages.kdeconnect-kde;
@ -193,45 +193,9 @@
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
nvidia-vaapi-driver
];
};
nvidia = {
# https://nixos.wiki/wiki/Nvidia
# Modesetting is required.
modesetting.enable = true;
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
# Enable this if you have graphical corruption issues or application crashes after waking
# up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead
# of just the bare essentials.
powerManagement.enable = true;#false;
# Fine-grained power management. Turns off GPU when not in use.
# Experimental and only works on modern Nvidia GPUs (Turing or newer).
powerManagement.finegrained = false;
# Use the NVidia open source kernel module (not to be confused with the
# independent third-party "nouveau" open source driver).
# Support is limited to the Turing and later architectures. Full list of
# supported GPUs is at:
# https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus
# Only available from driver 515.43.04+
# Currently alpha-quality/buggy, so false is currently the recommended setting.
open = true;
# Enable the Nvidia settings menu,
# accessible via `nvidia-settings`.
nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
logitech.wireless.enable = true;
};
services.xserver.videoDrivers = [ "nvidia" ];
security.polkit.enable = true;
@ -264,7 +228,7 @@
};
home-manager = {
extraSpecialArgs = {inherit pkgs; inherit inputs;};
extraSpecialArgs = {inherit pkgs; inherit hostname; inherit inputs;};
users = {
"kylekrein" = import ./home.nix;
};