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
];
+1 -1
View File
@@ -1,4 +1,4 @@
{ config, lib, pkgs, nixgl, home_attrs, ... }:
{ config, lib, pkgs, nixgl, quickshell, home_attrs, ... }:
{
programs.home-manager.enable = true;
nixGL.packages = nixgl.packages;