Fix quickshell in dist-nix

This commit is contained in:
clsty
2025-11-04 12:40:38 +08:00
parent 5af7420129
commit 0f93784b8a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -19,7 +19,7 @@
};
};
outputs = { nixpkgs, home-manager, nixgl, ... }:
outputs = { nixpkgs, home-manager, nixgl, quickshell, ... }:
let
home_attrs = rec {
username = import ./username.nix;
@@ -35,7 +35,7 @@
homeConfigurations = {
illogical_impulse = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = { inherit nixgl home_attrs; };
extraSpecialArgs = { inherit home_attrs nixgl quickshell; };
modules = [
./home.nix
];