Reorganize overlays

This commit is contained in:
Charlotte Van Petegem 2020-07-09 17:04:37 +02:00
parent c58418bdee
commit e4d783c045
10 changed files with 46 additions and 46 deletions

11
configurations/pass.nix Normal file
View file

@ -0,0 +1,11 @@
{ ... }: {
nixpkgs.overlays = [
(self: super: {
pass = (super.pass-wayland.override { pass = super.pass-wayland; }).withExtensions (ext: [ ext.pass-otp ]);
})
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.pass ];
};
}