summaryrefslogtreecommitdiff
path: root/hm/soft/awww.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soft/awww.nix')
-rw-r--r--hm/soft/awww.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hm/soft/awww.nix b/hm/soft/awww.nix
deleted file mode 100644
index e807c9d..0000000
--- a/hm/soft/awww.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, inputs, ... }:
-let
- cfg = config.szpont.hm.soft.awww;
-in
-{
- options.szpont.hm.soft.awww.enable = lib.mkEnableOption "enables awww";
-
- config = lib.mkIf cfg.enable {
- services.swww = {
- enable = true;
- package = inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww;
- };
- };
-}