fix(droid): fix eval of pkgs and nvim module
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
b34b174c68
commit
75444803cd
2 changed files with 11 additions and 2 deletions
|
@ -39,7 +39,12 @@
|
|||
home-manager.config = {
|
||||
imports = [
|
||||
self.homeManagerModules.neovim
|
||||
{programs.neovim.enable = true;}
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
user = "nix-on-droid";
|
||||
};
|
||||
}
|
||||
|
||||
self.homeManagerModules.shell
|
||||
{programs.bash.enable = true;}
|
||||
|
|
|
@ -29,7 +29,11 @@ inputs: rec {
|
|||
]
|
||||
++ (cfg.config.permittedInsecurePackages or []);
|
||||
}
|
||||
// (cfg.config or {});
|
||||
// (builtins.removeAttrs (
|
||||
if cfg.config or null == null
|
||||
then {}
|
||||
else cfg.config
|
||||
) ["permittedInsecurePackages"]);
|
||||
};
|
||||
|
||||
# Enable use of `nixpkgs.overlays` on both NixOS and NixOnDroid
|
||||
|
|
Loading…
Reference in a new issue