1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/bashmount.nix

35 lines
734 B
Nix
Raw Normal View History

2022-08-07 01:11:57 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.bashmount;
in {
meta.maintainers = [ maintainers.AndersonTorres ];
options.programs.bashmount = {
enable = mkEnableOption "bashmount";
2022-08-07 01:11:57 +02:00
extraConfig = mkOption {
type = types.lines;
default = "";
description = ''
2022-08-07 01:11:57 +02:00
Configuration written to
{file}`$XDG_CONFIG_HOME/bashmount/config`. Look at
<https://github.com/jamielinux/bashmount/blob/master/bashmount.conf>
2022-08-07 01:11:57 +02:00
for explanation about possible values.
'';
};
};
config = mkIf cfg.enable {
home.packages = [ pkgs.bashmount ];
xdg.configFile."bashmount/config" =
mkIf (cfg.extraConfig != "") { text = cfg.extraConfig; };
};
}