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