Regenerated

This commit is contained in:
2026-04-11 14:29:05 +02:00
parent d5f83f6978
commit d0a68dbff5
4 changed files with 414 additions and 316 deletions
+355 -316
View File
File diff suppressed because it is too large Load Diff
+32
View File
@@ -143,6 +143,11 @@ The Nix flake definition for Droidnix.
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
import-tree.url = "github:vic/import-tree";
stylix = {
@@ -1518,6 +1523,33 @@ This sets the dbus implementation
}
#+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
+5
View File
@@ -9,6 +9,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
import-tree.url = "github:vic/import-tree";
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";
};
}