add nixgl
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, inputs, config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
home.packages = with pkgs;[ ];
|
||||
home.packages = with pkgs;[ (config.lib.nixGL.wrap nextcloud-client) ];
|
||||
|
||||
home.file = {
|
||||
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
|
||||
@@ -33,4 +33,20 @@
|
||||
# org.gradle.daemon.idletimeout=3600000
|
||||
# '';
|
||||
};
|
||||
|
||||
nixGL = {
|
||||
packages = inputs.nixgl.packages;
|
||||
# vulkan.enable = true;
|
||||
};
|
||||
|
||||
programs.kodi = {
|
||||
enable = true;
|
||||
package = config.lib.nixGL.wrap (pkgs.kodi.withPackages (exts: [ exts.jellycon exts.joystick ]));
|
||||
};
|
||||
|
||||
systemd.user.services.nextcloud-client = {
|
||||
Unit = {
|
||||
After = pkgs.lib.mkForce "graphical-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user