Regenerated
This commit is contained in:
+355
-316
File diff suppressed because it is too large
Load Diff
@@ -143,6 +143,11 @@ The Nix flake definition for Droidnix.
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
quickshell = {
|
||||||
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
import-tree.url = "github:vic/import-tree";
|
import-tree.url = "github:vic/import-tree";
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
@@ -1518,6 +1523,33 @@ This sets the dbus implementation
|
|||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** =generated/modules/traveldroid/system/quickshell.nix=
|
||||||
|
This sets the dbus implementation
|
||||||
|
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/quickshell.nix :noweb yes :mkdirp yes :eval never
|
||||||
|
{ inputs, pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Core
|
||||||
|
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||||
|
|
||||||
|
# QML development tools
|
||||||
|
qt6.qtdeclarative # Includes qmlls (LSP for QML)
|
||||||
|
qt6.qttools # Includes qml tooling (qmlformat, qmllint)
|
||||||
|
|
||||||
|
# Extra Qt modules quickshell configs commonly use
|
||||||
|
qt6.qtsvg # SVG support
|
||||||
|
qt6.qtimageformats # WebP and other image formats
|
||||||
|
qt6.qtmultimedia # Video/audio playback in widgets
|
||||||
|
qt6.qt5compat # Extra visual effects (gaussian blur etc.)
|
||||||
|
];
|
||||||
|
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
platformTheme = "qt6ct";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
|
||||||
* generated/users
|
* generated/users
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,11 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
quickshell = {
|
||||||
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
import-tree.url = "github:vic/import-tree";
|
import-tree.url = "github:vic/import-tree";
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
{ inputs, pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Core
|
||||||
|
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||||
|
|
||||||
|
# QML development tools
|
||||||
|
qt6.qtdeclarative # Includes qmlls (LSP for QML)
|
||||||
|
qt6.qttools # Includes qml tooling (qmlformat, qmllint)
|
||||||
|
|
||||||
|
# Extra Qt modules quickshell configs commonly use
|
||||||
|
qt6.qtsvg # SVG support
|
||||||
|
qt6.qtimageformats # WebP and other image formats
|
||||||
|
qt6.qtmultimedia # Video/audio playback in widgets
|
||||||
|
qt6.qt5compat # Extra visual effects (gaussian blur etc.)
|
||||||
|
];
|
||||||
|
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
platformTheme = "qt6ct";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user