tangled
alpha
login
or
join now
karitham.dev
/
dotfiles
0
fork
atom
nix all the things
0
fork
atom
overview
issues
pulls
pipelines
try zed
karitham.dev
2 weeks ago
55873897
05b7c87d
verified
This commit was signed with the committer's
known signature
.
karitham.dev
SSH Key Fingerprint:
SHA256:ODeRMGYuG7M/0G+fRF6IfwUk7r5AgG5MYdFTN+uvimc=
+5
2 changed files
expand all
collapse all
unified
split
modules
desktop
apps
default.nix
zed.nix
+1
modules/desktop/apps/default.nix
···
2
2
imports = [
3
3
./browser.nix
4
4
./discord.nix
5
5
+
./zed.nix
5
6
];
6
7
}
+4
modules/desktop/apps/zed.nix
···
1
1
+
{ lib, config, ... }:
2
2
+
{
3
3
+
config = lib.mkIf (config.dev.tools.enable || false) { programs.zed-editor.enable = true; };
4
4
+
}