init
This commit is contained in:
commit
0df1237eb2
19 changed files with 1921 additions and 0 deletions
37
modules/quickshell.nix
Normal file
37
modules/quickshell.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
quickshell = inputs.quickshell.packages.${pkgs.system}.default;
|
||||
in
|
||||
{
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
quickshell
|
||||
]
|
||||
++ [
|
||||
inputs.mynixpkgs.packages.${pkgs.system}.dgop
|
||||
accountsservice
|
||||
brightnessctl
|
||||
cava
|
||||
cliphist
|
||||
ddcutil
|
||||
kdePackages.qt6ct
|
||||
khal
|
||||
material-symbols
|
||||
matugen
|
||||
swww
|
||||
wl-clipboard
|
||||
glib
|
||||
];
|
||||
|
||||
home.sessionVariables.QML2_IMPORT_PATH = lib.concatStringsSep ":" [
|
||||
"${quickshell}/lib/qt-6/qml"
|
||||
"${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml"
|
||||
"${pkgs.kdePackages.kirigami.unwrapped}/lib/qt-6/qml"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue