nixos/home/Vanguard.nix
Evie Litherland-Smith bb0407d1e2 Move krita to Vanguard only
Move yakuake autostart to plasma config

Fix (hopefully) steam autostart on Vanguard
2024-08-30 06:29:53 +01:00

29 lines
726 B
Nix

{ pkgs, ... }:
{
imports = [
./personal.nix
./games/default.nix
./streaming/default.nix
./desktop/plasma/default.nix
];
home.packages = with pkgs; [
kdePackages.ktorrent
krita
prusa-slicer
blender
freecad
openscad
kicad-small
];
programs.plasma = {
configFile = {
bluedevilglobalrc.Global.launchState.value = "enable";
};
};
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" = "${pkgs.steam}/share/applications/steam.desktop";
};
}