23 lines
509 B
Nix
23 lines
509 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./personal.nix
|
|
./games/default.nix
|
|
./streaming/default.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
kdePackages.ktorrent
|
|
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";
|
|
}
|