fix(cheetah)!: nixpkgs.overlays
&& gpg
Fix `gpg` as `ssh` setup (also add `openssh` to `home.packages`) Remove `j` (breaking, cannot build)
This commit is contained in:
parent
581b1d9a8d
commit
02f7fe0cf5
4 changed files with 29 additions and 25 deletions
|
@ -157,16 +157,17 @@ rec {
|
|||
modules = [
|
||||
(lib.path.append root "configuration.nix")
|
||||
{ nix.registry.nixpkgs.flake = nixpkgs; }
|
||||
{
|
||||
nixpkgs.overlays = builtins.attrValues outputs.overlays;
|
||||
}
|
||||
{
|
||||
home-manager = {
|
||||
config = (lib.path.append root "home.nix");
|
||||
backupFileExtension = "hm-bak";
|
||||
useGlobalPkgs = false;
|
||||
useUserPackages = true;
|
||||
sharedModules = builtins.attrValues homeManagerModules;
|
||||
sharedModules = builtins.attrValues homeManagerModules ++ [
|
||||
{
|
||||
nixpkgs.overlays = builtins.attrValues outputs.overlays;
|
||||
}
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
inherit inputs outputs;
|
||||
inherit hostname;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue