Regenerated

This commit is contained in:
2026-04-11 14:31:24 +02:00
parent d0a68dbff5
commit f645e07a74
4 changed files with 362 additions and 356 deletions
+327 -332
View File
File diff suppressed because it is too large Load Diff
+7 -12
View File
@@ -1529,23 +1529,18 @@ This sets the dbus implementation
{ inputs, pkgs, ... }: { inputs, pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Core
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
qt6.qtdeclarative
# QML development tools qt6.qttools
qt6.qtdeclarative # Includes qmlls (LSP for QML) qt6.qtsvg
qt6.qttools # Includes qml tooling (qmlformat, qmllint) qt6.qtimageformats
qt6.qtmultimedia
# Extra Qt modules quickshell configs commonly use qt6.qt5compat
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 = { qt = {
enable = true; enable = true;
platformTheme = "qt6ct"; platformTheme = "qt5ct";
}; };
} }
#+END_SRC #+END_SRC
+21
View File
@@ -695,6 +695,26 @@
"type": "github" "type": "github"
} }
}, },
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1775720097,
"narHash": "sha256-p+vqkCuFfVNyQBo370wr6MebNUvz55RZiC0m8YKUhvQ=",
"ref": "refs/heads/master",
"rev": "d4c92973b53d9fa34cc110d3b974eb6bde5b3027",
"revCount": 800,
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
},
"original": {
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}
},
"root": { "root": {
"inputs": { "inputs": {
"emacs-overlay": "emacs-overlay", "emacs-overlay": "emacs-overlay",
@@ -703,6 +723,7 @@
"hyprland": "hyprland", "hyprland": "hyprland",
"import-tree": "import-tree", "import-tree": "import-tree",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"quickshell": "quickshell",
"stylix": "stylix", "stylix": "stylix",
"zen-browser": "zen-browser" "zen-browser": "zen-browser"
} }
@@ -1,22 +1,17 @@
{ inputs, pkgs, ... }: { inputs, pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Core
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
qt6.qtdeclarative
# QML development tools qt6.qttools
qt6.qtdeclarative # Includes qmlls (LSP for QML) qt6.qtsvg
qt6.qttools # Includes qml tooling (qmlformat, qmllint) qt6.qtimageformats
qt6.qtmultimedia
# Extra Qt modules quickshell configs commonly use qt6.qt5compat
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 = { qt = {
enable = true; enable = true;
platformTheme = "qt6ct"; platformTheme = "qt5ct";
}; };
} }