1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-07 22:13:52 +00:00
ultima/modules/home/shells/alias.nix

23 lines
464 B
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ pkgs, lib, config, ... }:
with lib;
let cfg = config.module.shells.alias;
in {
options = {
module.shells.alias = {
alias = mkOption {
type = with types; attrsOf str;
default = null;
};
};
};
2024-12-03 14:20:37 +00:00
config = {
2024-11-21 09:24:15 +00:00
home = { shellAliases = cfg.alias; };
xdg.configFile."lutgen/paradise".text =
"151515 1F1F1F 2E2E2E 424242 BBB6B6 E8E3E3 E8E3E3 E8E3E3 B66467 D9BC8C D9BC8C 8C977D 8AA6A2 8DA3B9 A988B0 BBB6B6";
};
}