Compare commits
1 commit
274a3af93a
...
f1549ce21f
Author | SHA1 | Date | |
---|---|---|---|
f1549ce21f |
2 changed files with 52 additions and 0 deletions
|
@ -18,6 +18,7 @@ in
|
||||||
bat = enabled;
|
bat = enabled;
|
||||||
btop = enabled;
|
btop = enabled;
|
||||||
cava = enabled;
|
cava = enabled;
|
||||||
|
cheat = enabled;
|
||||||
fish = enabled;
|
fish = enabled;
|
||||||
journalctl = enabled;
|
journalctl = enabled;
|
||||||
neo = enabled;
|
neo = enabled;
|
||||||
|
|
51
modules/home/programs/cheat/default.nix
Normal file
51
modules/home/programs/cheat/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
namespace,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
inherit (lib.${namespace}) mkEnableModule;
|
||||||
|
|
||||||
|
cfg = config.${namespace}.programs.cheat;
|
||||||
|
inherit (config.${namespace}) theme;
|
||||||
|
|
||||||
|
toYAML = (pkgs.formats.yaml { }).generate;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options = mkEnableModule "programs.cheat";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
cheat
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."cheat/conf.yml".source = toYAML "conf.yml" {
|
||||||
|
colorize = true;
|
||||||
|
style = "${theme.colors.base}";
|
||||||
|
formatter = "terminal256";
|
||||||
|
pager = "less -FRX";
|
||||||
|
|
||||||
|
cheatpaths =
|
||||||
|
let
|
||||||
|
cheatDir = "${config.xdg.configHome}/cheat/cheatsheets";
|
||||||
|
in
|
||||||
|
[
|
||||||
|
{
|
||||||
|
name = "community";
|
||||||
|
path = "${cheatDir}/community";
|
||||||
|
tags = [ "community" ];
|
||||||
|
readonly = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "personal";
|
||||||
|
path = "${cheatDir}/personal";
|
||||||
|
tags = [ "personal" ];
|
||||||
|
readonly = false;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue