dotfiles/home/modules/zed.nix
2025-10-08 14:19:57 -05:00

11 lines
148 B
Nix

{ config, lib, pkgs, ... }:
let
laptop = builtins.readFile "/etc/hostname" == "syl\n";
in
{
programs.zed-editor = {
enable = true;
};
}