Settings window #20
@@ -91,7 +91,7 @@ Below a full example of what it could look like.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you can add z-bar-qt as a nixpkgs in environment.systemPackages (or optionally in your homePackages).
|
Now you can add z-bar-qt as a nixpkg in environment.systemPackages (or optionally in your homePackages).
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
@@ -99,11 +99,12 @@ Now you can add z-bar-qt as a nixpkgs in environment.systemPackages (or optional
|
|||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
inputs.z-bar-qt.packages.${system}.zshell
|
inputs.z-bar-qt.packages.${system}.zshell
|
||||||
|
inputs.z-bar-qt.packages.${system}.zshell-cli
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can now run `zshell` to run the bar.
|
You can now run `zshell` to run the bar. `zshell-cli` can be used for additional options.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -35,6 +35,7 @@
|
|||||||
libqalculate
|
libqalculate
|
||||||
bash
|
bash
|
||||||
hyprland
|
hyprland
|
||||||
|
zshell-cli
|
||||||
];
|
];
|
||||||
|
|
||||||
fontconfig = makeFontsConf {
|
fontconfig = makeFontsConf {
|
||||||
@@ -101,7 +102,7 @@ in
|
|||||||
qt6.qtbase
|
qt6.qtbase
|
||||||
qt6.qtwayland
|
qt6.qtwayland
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = runtimeDeps ++ [zshell-cli];
|
propagatedBuildInputs = runtimeDeps;
|
||||||
|
|
||||||
cmakeFlags =
|
cmakeFlags =
|
||||||
[
|
[
|
||||||
|
|||||||
Reference in New Issue
Block a user