mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
nvidia must be in xserver drivers (added calculator)
This commit is contained in:
parent
78bcc1ed79
commit
22fe011701
4 changed files with 1 additions and 8 deletions
|
|
@ -22,7 +22,6 @@ in {
|
||||||
++ (with pkgs.gnome; [
|
++ (with pkgs.gnome; [
|
||||||
gnome-weather
|
gnome-weather
|
||||||
gnome-shell
|
gnome-shell
|
||||||
gnome-calculator
|
|
||||||
gnome-disk-utility
|
gnome-disk-utility
|
||||||
gnome-maps
|
gnome-maps
|
||||||
gnome-clocks
|
gnome-clocks
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@ inputs: {
|
||||||
pkgs.heroic
|
pkgs.heroic
|
||||||
pkgs.legendary-gl
|
pkgs.legendary-gl
|
||||||
pkgs.prismlauncher
|
pkgs.prismlauncher
|
||||||
pkgs.lutris
|
|
||||||
pkgs.pcmanfm #file manager
|
pkgs.pcmanfm #file manager
|
||||||
pkgs.librewolf #best browser
|
pkgs.librewolf #best browser
|
||||||
pkgs.obs-studio
|
pkgs.obs-studio
|
||||||
|
|
@ -77,10 +76,6 @@ inputs: {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
environment.interactiveShellInit = lib.mkForce ''
|
|
||||||
export TERMINAL=gnome-terminal
|
|
||||||
fetch-rs
|
|
||||||
'';
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
boot = {
|
boot = {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ _: {
|
||||||
format = "gpt";
|
format = "gpt";
|
||||||
partitions = [
|
partitions = [
|
||||||
{
|
{
|
||||||
type = "partition";
|
|
||||||
name = "ESP";
|
name = "ESP";
|
||||||
start = "1MiB";
|
start = "1MiB";
|
||||||
end = "1GiB";
|
end = "1GiB";
|
||||||
|
|
@ -20,7 +19,6 @@ _: {
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "root";
|
name = "root";
|
||||||
type = "partition";
|
|
||||||
start = "1GiB";
|
start = "1GiB";
|
||||||
end = "100%";
|
end = "100%";
|
||||||
part-type = "primary";
|
part-type = "primary";
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ _: {config, ...}: {
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
};
|
};
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
videoDrivers = ["nvidia"];
|
||||||
#disable DPMS
|
#disable DPMS
|
||||||
monitorSection = ''
|
monitorSection = ''
|
||||||
Option "DPMS" "false"
|
Option "DPMS" "false"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue