18 lines
315 B
Nix
18 lines
315 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./personal.nix
|
|
./games/default.nix
|
|
./streaming/default.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
xdg.configFile = {
|
|
"autostart/org.kde.ktorrent.desktop".source = "${pkgs.kdePackages.ktorrent}/share/applications/org.kde.ktorrent.desktop";
|
|
};
|
|
}
|