overlays: remove pass minimal
This commit is contained in:
parent
13fcb96fc9
commit
9d266f6c73
4 changed files with 8 additions and 17 deletions
|
@ -1,3 +0,0 @@
|
|||
[
|
||||
(import ./pass.nix)
|
||||
]
|
|
@ -1,5 +0,0 @@
|
|||
final: prev: {
|
||||
pass-minimal = prev.pass.override {
|
||||
dmenuSupport = false;
|
||||
};
|
||||
}
|
|
@ -1,16 +1,15 @@
|
|||
{ config, pkgs, lib, inputs, extraHomeModule ? null, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.overlays = lib.mkMerge [
|
||||
(lib.mkBefore (import ../../overlays))
|
||||
(lib.mkAfter [
|
||||
inputs.wired.overlays.default
|
||||
inputs.myneovim.overlays.default
|
||||
inputs.vnetod.overlay
|
||||
inputs.nil.overlays.default
|
||||
])
|
||||
nixpkgs.overlays = lib.mkAfter [
|
||||
inputs.wired.overlays.default
|
||||
inputs.myneovim.overlays.default
|
||||
inputs.vnetod.overlay
|
||||
inputs.nil.overlays.default
|
||||
];
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
users.users.jan = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
let
|
||||
passDataDir = "${config.xdg.dataHome}/pass";
|
||||
|
||||
myPassPackage = pkgs.pass-minimal.withExtensions (ext: [
|
||||
myPassPackage = pkgs.pass.withExtensions (ext: [
|
||||
ext.pass-audit
|
||||
]);
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue