This commit is contained in:
Chris Cochrun 2025-10-08 14:19:57 -05:00
parent f7ed344a30
commit cfc03cf564
4 changed files with 26 additions and 16 deletions

11
home/modules/zed.nix Normal file
View file

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