Compare commits
4 Commits
5a36dbc083
...
9ca20b8e24
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9ca20b8e24 | ||
|
|
2f5a44b112 | ||
|
|
c29cae486e | ||
|
|
769e1c166a |
@ -15,7 +15,7 @@ in {
|
|||||||
inetutils
|
inetutils
|
||||||
neofetch
|
neofetch
|
||||||
tmux
|
tmux
|
||||||
nerdfonts
|
# nerdfonts
|
||||||
p7zip
|
p7zip
|
||||||
rclone
|
rclone
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|||||||
@ -16,7 +16,12 @@ in
|
|||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
# Enable NVIDIA driver for X11 and Wayland
|
# Enable NVIDIA driver for X11 and Wayland
|
||||||
services.xserver.videoDrivers = [ "amdgpu" "nvidia" ];
|
# without modesetting, x server will be run by nvidia
|
||||||
|
services.xserver.videoDrivers = [
|
||||||
|
"amdgpu"
|
||||||
|
"modesetting"
|
||||||
|
"nvidia"
|
||||||
|
];
|
||||||
|
|
||||||
# Enable OpenGL
|
# Enable OpenGL
|
||||||
hardware.graphics = {
|
hardware.graphics = {
|
||||||
@ -77,7 +82,7 @@ in
|
|||||||
hardware.nvidia = {
|
hardware.nvidia = {
|
||||||
# Modesetting is required.
|
# Modesetting is required.
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
|
|
||||||
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
|
# Nvidia power management. Experimental, and can cause sleep/suspend to fail.
|
||||||
# Enable this if you have graphical corruption issues or application crashes after waking
|
# 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
|
# up from sleep. This fixes it by saving the entire VRAM memory to /tmp/ instead
|
||||||
|
|||||||
@ -101,7 +101,7 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
# wget
|
# wget
|
||||||
pkgs.gnome3.gnome-tweaks
|
pkgs.gnome-tweaks
|
||||||
];
|
];
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
|
|||||||
@ -4,7 +4,7 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
my-namespace.hardware = {
|
my-namespace.hardware = {
|
||||||
graphics-nvidia-prime-amd.enable = false;
|
# graphics-nvidia-prime-amd = enabled;
|
||||||
graphics-nvidia-prime-amd-testing = enabled;
|
graphics-nvidia-prime-amd-testing = enabled;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user