mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
As it can lead to conflicts between versions, I removed the additional imports. They are not needed as the program is installed by enabling the program.
11 lines
199 B
Nix
11 lines
199 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.file = {
|
|
".config/zed/settings.json" = { source = ./settings.json; };
|
|
};
|
|
|
|
# FIX: Currently broken, installed with Homebrew
|
|
# home.packages = [ pkgs.zed-editor ];
|
|
}
|