nixos/home/Vanguard.nix

29 lines
726 B
Nix
Raw Normal View History

{ pkgs, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [
./personal.nix
./games/default.nix
./streaming/default.nix
./desktop/plasma/default.nix
];
home.packages = with pkgs; [
kdePackages.ktorrent
krita
2024-08-29 10:35:08 +01:00
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";
};
}