parent
e904d7ff25
commit
4823e9a196
4 changed files with 9 additions and 28 deletions
|
@ -15,7 +15,6 @@ This directory contains every derivations for devShells exposed by this flake.
|
||||||
| `netdaemon` | Shell that makes sure we have the right dotnet-sdk version for NetDaemon development. |
|
| `netdaemon` | Shell that makes sure we have the right dotnet-sdk version for NetDaemon development. |
|
||||||
| `node` | Shell that provides `bumpNpmDeps`, node and typescript. |
|
| `node` | Shell that provides `bumpNpmDeps`, node and typescript. |
|
||||||
| `qml` | qml shell to be loaded by my Neovim config dynamically. |
|
| `qml` | qml shell to be loaded by my Neovim config dynamically. |
|
||||||
| `quickshell` | Shell that provides the quickshell executable with `QML2_IMPORT_PATH` correctly defined for quickshell development. |
|
|
||||||
| `rust` | rust shell to be loaded by my Neovim config dynamically. |
|
| `rust` | rust shell to be loaded by my Neovim config dynamically. |
|
||||||
| `subtitles-dev` | Shell that provides the dependencies for my subtitle management scripts. |
|
| `subtitles-dev` | Shell that provides the dependencies for my subtitle management scripts. |
|
||||||
| `web` | web shell to be loaded by my Neovim config dynamically. |
|
| `web` | web shell to be loaded by my Neovim config dynamically. |
|
||||||
|
|
|
@ -37,8 +37,6 @@ in
|
||||||
|
|
||||||
node = pkgs.callPackage ./node {inherit bumpNpmDeps;};
|
node = pkgs.callPackage ./node {inherit bumpNpmDeps;};
|
||||||
|
|
||||||
quickshell = pkgs.callPackage ./quickshell {};
|
|
||||||
|
|
||||||
subtitles-dev = pkgs.callPackage ./subtitle-dev {inherit bumpNpmDeps;};
|
subtitles-dev = pkgs.callPackage ./subtitle-dev {inherit bumpNpmDeps;};
|
||||||
}
|
}
|
||||||
// neovimShells
|
// neovimShells
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
mkShell,
|
|
||||||
kdePackages,
|
|
||||||
quickshell,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
mkShell {
|
|
||||||
packages = [
|
|
||||||
quickshell
|
|
||||||
kdePackages.qtdeclarative
|
|
||||||
];
|
|
||||||
|
|
||||||
shellHook = ''
|
|
||||||
export QML2_IMPORT_PATH="$QML2_IMPORT_PATH:${lib.makeSearchPath "lib/qt-6/qml" [
|
|
||||||
quickshell
|
|
||||||
kdePackages.qtdeclarative
|
|
||||||
]}"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta.description = ''
|
|
||||||
Shell that provides the quickshell executable with `QML2_IMPORT_PATH`
|
|
||||||
correctly defined for quickshell development.
|
|
||||||
'';
|
|
||||||
}
|
|
|
@ -1,10 +1,19 @@
|
||||||
{
|
{
|
||||||
|
lib,
|
||||||
mkShell,
|
mkShell,
|
||||||
kdePackages,
|
kdePackages,
|
||||||
|
quickshell,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
mkShell {
|
mkShell {
|
||||||
packages = [
|
packages = [
|
||||||
kdePackages.qtdeclarative
|
kdePackages.qtdeclarative
|
||||||
];
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
export QML2_IMPORT_PATH="$QML2_IMPORT_PATH:${lib.makeSearchPath "lib/qt-6/qml" [
|
||||||
|
quickshell
|
||||||
|
kdePackages.qtdeclarative
|
||||||
|
]}"
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue