1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

swappy: add module

This commit is contained in:
Aguirre Matteo 2025-09-02 10:20:23 -03:00 committed by Austin Horstman
parent f3d3b4592a
commit 1a6f6fb409
4 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,61 @@
{
lib,
pkgs,
config,
...
}:
let
inherit (lib)
mkIf
mkEnableOption
mkPackageOption
mkOption
;
cfg = config.programs.swappy;
iniFormat = pkgs.formats.ini { };
in
{
meta.maintainers = with lib.hm.maintainers; [ aguirre-matteo ];
options.programs.swappy = {
enable = mkEnableOption "swappy";
package = mkPackageOption pkgs "swappy" { nullable = true; };
settings = mkOption {
inherit (iniFormat) type;
default = { };
example = {
Default = {
save_dir = "$HOME/Desktop";
save_filename_format = "swappy-%Y%m%d-%H%M%S.png";
show_panel = false;
line_size = 5;
text_size = 20;
text_font = "sans-serif";
paint_mode = "brush";
early_exit = false;
fill_shape = false;
auto_save = false;
custom_color = "rgba(193,125,17,1)";
transparent = false;
transparency = 50;
};
};
description = ''
Configuration settings for swappy. All the available options can be found
here: <https://github.com/jtheoof/swappy?tab=readme-ov-file#config>
'';
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "programs.swappy" pkgs lib.platforms.linux)
];
home.packages = mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."swappy/config" = mkIf (cfg.settings != { }) {
source = iniFormat.generate "swappy-config" cfg.settings;
};
};
}

View file

@ -0,0 +1,14 @@
[Default]
auto_save=false
custom_color=rgba(193,125,17,1)
early_exit=false
fill_shape=false
line_size=5
paint_mode=brush
save_dir=$HOME/Desktop
save_filename_format=swappy-%Y%m%d-%H%M%S.png
show_panel=false
text_font=sans-serif
text_size=20
transparency=50
transparent=false

View file

@ -0,0 +1,5 @@
{ lib, pkgs, ... }:
(lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
swappy-example-config = ./example-config.nix;
})

View file

@ -0,0 +1,28 @@
{
programs.swappy = {
enable = true;
settings = {
Default = {
save_dir = "$HOME/Desktop";
save_filename_format = "swappy-%Y%m%d-%H%M%S.png";
show_panel = false;
line_size = 5;
text_size = 20;
text_font = "sans-serif";
paint_mode = "brush";
early_exit = false;
fill_shape = false;
auto_save = false;
custom_color = "rgba(193,125,17,1)";
transparent = false;
transparency = 50;
};
};
};
nmt.script = ''
assertFileExists home-files/.config/swappy/config
assertFileContent home-files/.config/swappy/config \
${./config}
'';
}