This commit is contained in:
Javier Feliz 2025-08-10 01:05:22 -04:00
parent 75f87a6b55
commit 7a7ece771b

View File

@ -10,17 +10,17 @@
}; };
outputs = outputs =
{ inputs@{
self, self,
nixpkgs, nixpkgs,
home-manager, home-manager,
... ...
}@inputs: }:
{ {
homeManagerModules.default = homeManagerModules.default =
{ config, lib, ... }: { config, lib, ... }:
{ {
home-manager.home.file.".config/quickshell/hyprshell".source = ./hyprshell; inputs.home-manager.home.file.".config/quickshell/hyprshell".source = ./hyprshell;
}; };
}; };
} }