home-manager parameters

This commit is contained in:
2025-09-24 03:05:30 -04:00
parent 4afceb577d
commit 8797880ee1
3 changed files with 12 additions and 2 deletions

View File

@ -182,7 +182,7 @@
# sha256 = "0hhfk86z1yq5gn9bzqpv46nb9bdx3fygi55b4ayzmnamva7rcajp";
# })
# ];
}));
}))
];

View File

@ -38,6 +38,11 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.abby = ./home.nix;
home-manager.extraSpecialArgs = {
username = "abby";
inherit inputs;
system = "x86_64-linux";
};
}
];
};
@ -53,6 +58,10 @@
lix-module.nixosModules.default
./home.nix
];
extraSpecialArgs = {
inherit inputs;
inherit system;
};
};
homeConfigurations."pager@nicrosil" =
let

View File

@ -1,4 +1,4 @@
{ config, pkgs, inputs, username ? "abby", ... }:
{ config, pkgs, inputs, system ? "x86_64-linux", username ? "abby", ... }:
{
# Home Manager needs a bit of information about you and the
@ -22,6 +22,7 @@
home.packages = with pkgs; [
tmux
htop
#inputs.baballonia.${system}.default
];
# Wayvr customization