DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: ea54e224e44690a57e408a36ed1a79deaedabf17 nix-arta/modules/passmenu.nix -rw-r--r-- 401 bytes
ea54e224Jonni Liljamo feat: pass and restructure files 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{config, ...}: {
  flake.modules.nixos.passmenu = {pkgs, ...}: {
    imports = with config.flake.modules.nixos; [
      pass
    ];

    environment.systemPackages = [
      (pkgs.writeShellScriptBin "passmenu" (builtins.readFile ../files/scripts/passmenu.sh))
    ];
  };
  flake.modules.homeManager.passmenu = {...}: {
    imports = with config.flake.modules.homeManager; [
      rofi
    ];
  };
}