{s0mePC-nix, s0melapt0p-nix}: home-manager utilizing self function

This commit is contained in:
hand7s 2025-05-16 21:45:35 +03:00
parent 9144cb08bd
commit af2ee3b32d
No known key found for this signature in database
2 changed files with 6 additions and 6 deletions

View file

@ -1,9 +1,9 @@
{inputs, ...}: {
{inputs, self, ...}: {
home-manager = {
users = {
hand7s = {
imports = [
../../hand7s/default.nix
${self.outPath}/hand7s/default.nix
inputs.hyprpanel.homeManagerModules.hyprpanel
inputs.spicetify-nix.homeManagerModules.default
inputs.hyprland.homeManagerModules.default
@ -15,7 +15,7 @@
backupFileExtension = "backup";
extraSpecialArgs = {
inherit inputs;
inherit inputs self;
};
};
}