chore: bump all
build / build (push) Failing after 53s

This commit is contained in:
2026-06-07 13:26:45 -06:00
parent ce31e48d42
commit 3ad33b734a
19 changed files with 741 additions and 726 deletions
+15
View File
@@ -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)
'';
};
}