removed unnecessary deps for fnv
This commit is contained in:
parent
9ba38635df
commit
35289d7a97
4 changed files with 32 additions and 25 deletions
|
|
@ -169,9 +169,6 @@
|
||||||
wishlist #ssh bastion
|
wishlist #ssh bastion
|
||||||
fd # required for nvim config telescope
|
fd # required for nvim config telescope
|
||||||
rustdesk #remote tech support
|
rustdesk #remote tech support
|
||||||
pciutils #lspci
|
|
||||||
lshw # for getting bus ids for PRIME
|
|
||||||
dracut # for lsinitrd
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fonts
|
# Fonts
|
||||||
|
|
|
||||||
|
|
@ -4,24 +4,24 @@
|
||||||
|
|
||||||
config = lib.mkIf config.speccon18.applications.fnv.enable {
|
config = lib.mkIf config.speccon18.applications.fnv.enable {
|
||||||
|
|
||||||
# Load nvidia driver for Xorg and Wayland
|
|
||||||
# For offloading, `modesetting` is needed additionally,
|
|
||||||
# otherwise the X-server will be running permanently on nvidia,
|
|
||||||
# thus keeping the GPU always on (see `nvidia-smi`).
|
|
||||||
services.xserver.videoDrivers = [
|
|
||||||
"nvidia"
|
|
||||||
];
|
|
||||||
|
|
||||||
|
# Load nvidia driver for Xorg and Wayland
|
||||||
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
|
|
||||||
# Blacklist Nouveau driver to force 3060 to use nvidia driver
|
# Blacklist Nouveau driver to force 3060 to use nvidia driver
|
||||||
boot.blacklistedKernelModules = [ "nouveau" ];
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
||||||
|
|
||||||
# Enable OpenGL
|
# Enabling Gamemode for better game performance
|
||||||
|
programs.gamemode.enable = true;
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
|
||||||
|
# Enable OpenGL
|
||||||
graphics = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enable32Bit = true;
|
enable32Bit = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nvidia = {
|
nvidia = {
|
||||||
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.latest;
|
package = config.boot.kernelPackages.nvidiaPackages.latest;
|
||||||
|
|
@ -57,6 +57,18 @@
|
||||||
nvidiaSettings = true;
|
nvidiaSettings = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
bottles # Wine Prefix Management
|
||||||
|
winetricks # For more complex editing of prefix and possibly needed for SDL2
|
||||||
|
gamescope # micro compositor written by valve to help with better scaling and alt tabbing
|
||||||
|
mangohud # performance overlay hud using for testing performance of instance
|
||||||
|
goverlay # gui to manage huds
|
||||||
|
vkd3d # vulken to directx
|
||||||
|
wine
|
||||||
|
wineWowPackages.stable
|
||||||
|
cabextract
|
||||||
|
zenity
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./tuigreet.nix
|
./tuigreet.nix
|
||||||
];
|
];
|
||||||
speccon18.desktop.budgie.enable = true;
|
speccon18.desktop.budgie.enable = false;
|
||||||
speccon18.desktop.gnome.enable = false;
|
speccon18.desktop.gnome.enable = true;
|
||||||
speccon18.desktop.hyprland.enable = false;
|
speccon18.desktop.hyprland.enable = false;
|
||||||
speccon18.desktop.tuigreet.enable = false;
|
speccon18.desktop.tuigreet.enable = false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,28 +17,25 @@
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
# Gnome extensions
|
# Gnome extensions
|
||||||
environment.systemPackages = with pkgs; [ ];
|
environment.systemPackages = with pkgs.gnome; [ ];
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
gnome = {
|
gnome = {
|
||||||
core-utilities.enable = false;
|
core-apps.enable = true;
|
||||||
gnome-keyring.enable = true;
|
gnome-keyring.enable = true;
|
||||||
};
|
};
|
||||||
|
displayManager.defaultSession = lib.mkDefault "gnome";
|
||||||
xserver = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
layout = "us";
|
layout = "us";
|
||||||
xkbVariant = "";
|
xkbVariant = "";
|
||||||
displayManager = {
|
displayManager.gdm = {
|
||||||
gdm = {
|
enable = true;
|
||||||
enable = true;
|
wayland = true;
|
||||||
wayland = true;
|
};
|
||||||
};
|
|
||||||
defaultSession = lib.mkDefault "budgie-desktop";
|
|
||||||
};
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
gnome.enable = false;
|
gnome.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -51,6 +48,7 @@
|
||||||
portal = { enable = lib.mkDefault true; };
|
portal = { enable = lib.mkDefault true; };
|
||||||
mime.defaultApplications = {
|
mime.defaultApplications = {
|
||||||
"text/markdown" = "nvim";
|
"text/markdown" = "nvim";
|
||||||
|
"x-scheme-handler/nxm" = "mo2-nxm-handler.desktop";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue