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, ... }:
|
{ config, pkgs, lib, inputs, extraHomeModule ? null, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = lib.mkMerge [
|
nixpkgs.overlays = lib.mkAfter [
|
||||||
(lib.mkBefore (import ../../overlays))
|
|
||||||
(lib.mkAfter [
|
|
||||||
inputs.wired.overlays.default
|
inputs.wired.overlays.default
|
||||||
inputs.myneovim.overlays.default
|
inputs.myneovim.overlays.default
|
||||||
inputs.vnetod.overlay
|
inputs.vnetod.overlay
|
||||||
inputs.nil.overlays.default
|
inputs.nil.overlays.default
|
||||||
])
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
users.users.jan = {
|
users.users.jan = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
let
|
let
|
||||||
passDataDir = "${config.xdg.dataHome}/pass";
|
passDataDir = "${config.xdg.dataHome}/pass";
|
||||||
|
|
||||||
myPassPackage = pkgs.pass-minimal.withExtensions (ext: [
|
myPassPackage = pkgs.pass.withExtensions (ext: [
|
||||||
ext.pass-audit
|
ext.pass-audit
|
||||||
]);
|
]);
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue