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

16 lines
385 B
Nix
Raw Normal View History

2024-12-09 01:15:55 +00:00
{ x, lib, config, ... }:
2024-11-21 09:24:15 +00:00
with lib;
2024-12-09 01:15:55 +00:00
with x;
2024-11-21 09:24:15 +00:00
let cfg = config.module.shells.alias;
in {
2024-12-09 01:15:55 +00:00
options = { module.shells.alias = { alias = mkOpt.attrs.str; }; };
2024-11-21 09:24:15 +00:00
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";
};
}