DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: ea54e224e44690a57e408a36ed1a79deaedabf17 nix-arta/modules/nixos/pass.nix -rw-r--r-- 193 bytes
ea54e224Jonni Liljamo feat: pass and restructure files 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
{
  flake.modules.nixos.pass = {pkgs, ...}: {
    environment.systemPackages = [
      (pkgs.pass.override {
        dmenuSupport = false;
        waylandSupport = true;
      })
    ];
  };
}