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; [
|
||||
gnome-weather
|
||||
gnome-shell
|
||||
gnome-calculator
|
||||
gnome-disk-utility
|
||||
gnome-maps
|
||||
gnome-clocks
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@ inputs: {
|
|||
pkgs.heroic
|
||||
pkgs.legendary-gl
|
||||
pkgs.prismlauncher
|
||||
pkgs.lutris
|
||||
pkgs.pcmanfm #file manager
|
||||
pkgs.librewolf #best browser
|
||||
pkgs.obs-studio
|
||||
|
|
@ -77,10 +76,6 @@ inputs: {
|
|||
};
|
||||
};
|
||||
};
|
||||
environment.interactiveShellInit = lib.mkForce ''
|
||||
export TERMINAL=gnome-terminal
|
||||
fetch-rs
|
||||
'';
|
||||
hardware.bluetooth.enable = true;
|
||||
services.blueman.enable = true;
|
||||
boot = {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ _: {
|
|||
format = "gpt";
|
||||
partitions = [
|
||||
{
|
||||
type = "partition";
|
||||
name = "ESP";
|
||||
start = "1MiB";
|
||||
end = "1GiB";
|
||||
|
|
@ -20,7 +19,6 @@ _: {
|
|||
}
|
||||
{
|
||||
name = "root";
|
||||
type = "partition";
|
||||
start = "1GiB";
|
||||
end = "100%";
|
||||
part-type = "primary";
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ _: {config, ...}: {
|
|||
modesetting.enable = true;
|
||||
};
|
||||
services.xserver = {
|
||||
videoDrivers = ["nvidia"];
|
||||
#disable DPMS
|
||||
monitorSection = ''
|
||||
Option "DPMS" "false"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue