Add missing module to home-manager
This commit is contained in:
parent
2a0a3aebf9
commit
979269b42b
1 changed files with 10 additions and 4 deletions
14
flake.nix
14
flake.nix
|
@ -87,11 +87,17 @@
|
|||
modules = [
|
||||
(
|
||||
{ pkgs, ... }: {
|
||||
config._module.args = {
|
||||
machine = machine // {
|
||||
name = hostname;
|
||||
config = (pkgs.callPackage config { });
|
||||
config = {
|
||||
_module.args = {
|
||||
machine = machine // {
|
||||
name = hostname;
|
||||
config = (pkgs.callPackage config { });
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [
|
||||
sops-nix.homeManagerModules.sops
|
||||
];
|
||||
};
|
||||
})
|
||||
home-manager.nixosModules.home-manager
|
||||
|
|
Loading…
Reference in a new issue