Files
sydnix/modules/home/guile.nix
T
msyds 3ad33b734a
build / build (push) Failing after 53s
chore: bump all
2026-06-25 05:55:08 -06:00

16 lines
290 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.sydnix.guile;
in {
options.sydnix.guile = {
enable = lib.mkEnableOption "Guile Scheme";
};
config = lib.mkIf cfg.enable {
home.file.".guile".text = ''
(use-modules (ice-9 readline))
(activate-readline)
'';
};
}