1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-06 12:33:52 +00:00
ultima/modules/home/shells/alias.nix
2024-12-03 23:20:37 +09:00

23 lines
464 B
Nix

{ 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;
};
};
};
config = {
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";
};
}