@@ -0,0 +1,15 @@
|
||||
{ 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)
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user