home: gdb: add rr
This commit is contained in:
parent
5edffcd21d
commit
b20ef7f809
|
@ -5,13 +5,34 @@ in
|
||||||
{
|
{
|
||||||
options.my.home.gdb = with lib; {
|
options.my.home.gdb = with lib; {
|
||||||
enable = my.mkDisableOption "gdb configuration";
|
enable = my.mkDisableOption "gdb configuration";
|
||||||
|
|
||||||
|
rr = {
|
||||||
|
enable = my.mkDisableOption "rr configuration";
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.rr;
|
||||||
|
defaultText = literalExample "pkgs.rr";
|
||||||
|
description = ''
|
||||||
|
Package providing rr
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkMerge [
|
||||||
home.packages = with pkgs; [
|
(lib.mkIf cfg.enable {
|
||||||
gdb
|
home.packages = with pkgs; [
|
||||||
];
|
gdb
|
||||||
|
];
|
||||||
|
|
||||||
xdg.configFile."gdb/gdbinit".source = ./gdbinit;
|
xdg.configFile."gdb/gdbinit".source = ./gdbinit;
|
||||||
};
|
})
|
||||||
|
|
||||||
|
(lib.mkIf cfg.rr.enable {
|
||||||
|
home.packages = [
|
||||||
|
cfg.rr.package
|
||||||
|
];
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue