diff --git a/home/modules/flameshot.nix b/home/modules/flameshot.nix index b59ad6f..f479ea9 100644 --- a/home/modules/flameshot.nix +++ b/home/modules/flameshot.nix @@ -24,6 +24,11 @@ in config = lib.mkIf cfg.enable { # home.packages = with pkgs; [ flameshot ]; - xdg.configFile."flameshot/flameshot.ini".text = lib.generators.toINI { } cfg.config; + # xdg.configFile."flameshot/flameshot.ini".text = lib.generators.toINI { } cfg.config; + + services.flameshot = { + enable = true; + settings = cfg.config; + }; }; }