Autostart steam and webcord on Vanguard
This commit is contained in:
parent
78bad9a802
commit
d519351810
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./personal.nix
|
||||
|
@ -18,5 +18,13 @@
|
|||
bluedevilglobalrc.Global.launchState.value = "enable";
|
||||
};
|
||||
};
|
||||
xdg.configFile."autostart/org.kde.ktorrent.desktop".source = "${pkgs.kdePackages.ktorrent}/share/applications/org.kde.ktorrent.desktop";
|
||||
xdg.configFile = {
|
||||
"autostart/org.kde.ktorrent.desktop".source = "${pkgs.kdePackages.ktorrent}/share/applications/org.kde.ktorrent.desktop";
|
||||
"autostart/webcord.desktop".source = "${pkgs.webcord}/share/applications/webcord.desktop";
|
||||
"autostart/steam.desktop" =
|
||||
let
|
||||
source = "/run/current-system/sw/share/applications/steam.desktop";
|
||||
in
|
||||
lib.mkIf (builtins.pathExists source) { inherit source; };
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
prismlauncher
|
||||
cartridges
|
||||
(lutris.override {
|
||||
home.packages = [
|
||||
pkgs.prismlauncher
|
||||
pkgs.cartridges
|
||||
(pkgs.lutris.override {
|
||||
steamSupport = false;
|
||||
extraPkgs = pkgs: with pkgs; [ wineWowPackages.waylandFull ];
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue