DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: e48b2517640d2f279cc0d3aea4ea47f79ac224fd nix-arta/ws/roles/imv.nix -rw-r--r-- 236 bytes
e48b2517Jonni Liljamo feat: move arwen to ws and clenup orphan modules 8 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  lib,
  ...
}: let
  cfg = config.roles.imv;
in {
  options.roles.imv = {
    enable = lib.mkEnableOption "imv, a command line image viewer";
  };

  config = lib.mkIf cfg.enable {
    hm.programs.imv.enable = true;
  };
}