2024-08-04 10:43:27 +01:00
|
|
|
{ pkgs, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
|
|
|
./personal.nix
|
|
|
|
./games/default.nix
|
|
|
|
./streaming/default.nix
|
2024-07-10 08:27:17 +01:00
|
|
|
./desktop/plasma/default.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
];
|
2024-08-26 12:18:00 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
kdePackages.ktorrent
|
|
|
|
blender
|
|
|
|
freecad
|
|
|
|
openscad
|
|
|
|
kicad-small
|
|
|
|
];
|
2024-08-06 15:00:54 +01:00
|
|
|
programs.plasma = {
|
|
|
|
configFile = {
|
|
|
|
bluedevilglobalrc.Global.launchState.value = "enable";
|
|
|
|
};
|
|
|
|
};
|
2024-08-18 07:22:53 +01:00
|
|
|
xdg.configFile."autostart/org.kde.ktorrent.desktop".source = "${pkgs.kdePackages.ktorrent}/share/applications/org.kde.ktorrent.desktop";
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|