add nix system graphics

This commit is contained in:
Steam Deck User
2025-02-23 18:02:24 +00:00
parent 3bda156ab4
commit 9bc902cb90
8 changed files with 122 additions and 98 deletions

View File

@@ -9,15 +9,15 @@
home.packages = with pkgs;[
# general
(config.lib.nixGL.wrap thunderbird)
(config.lib.nixGL.wrap keepassxc)
(config.lib.nixGL.wrap qbittorrent)
(config.lib.nixGL.wrap libreoffice-qt)
(config.lib.nixGL.wrap joplin-desktop)
thunderbird
keepassxc
qbittorrent
libreoffice-qt
joplin-desktop
# comms
(config.lib.nixGL.wrap teamspeak_client)
(config.lib.nixGL.wrap vesktop)
teamspeak_client
vesktop
];
home.sessionVariables = {
@@ -26,7 +26,7 @@
services.nextcloud-client = {
enable = true;
package = config.lib.nixGL.wrap pkgs.nextcloud-client;
package = pkgs.nextcloud-client;
startInBackground = true;
};
@@ -35,7 +35,7 @@
chromium = {
enable = true;
package = config.lib.nixGL.wrap pkgs.brave;
package = pkgs.brave;
};
mpv = lib.mkDefault {

View File

@@ -170,7 +170,7 @@ with lib;
alacritty = {
enable = true;
package = config.lib.nixGL.wrap pkgs.alacritty;
package = pkgs.alacritty;
settings = {
font = {
normal = {

View File

@@ -4,7 +4,7 @@
programs = {
firefox = {
enable = true;
package = config.lib.nixGL.wrap pkgs.firefox;
package = pkgs.firefox;
languagePacks = [
"en-GB"
];

View File

@@ -3,7 +3,7 @@
{
home.packages = with pkgs;[
steamguard-cli
(config.lib.nixGL.wrap bottles)
(config.lib.nixGL.wrap inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".ryujinx-greemdev)
bottles
inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".ryujinx-greemdev
];
}