summaryrefslogtreecommitdiff
path: root/hm/env/awww.nix
blob: a25f4e683e316bafcf8c628156849f25f6afdb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:
let
  cfg = config.hm.env.awww;
in
{
  options.hm.env.awww.enable = lib.mkEnableOption "enables awww";
  config = lib.mkIf cfg.enable {
    services.swww = {
      enable = true;
    };
  };
}