refactor: clean up unused imports

refactor: remove some comments
feat: set VSCodium color scheme to Catppuccin Macchiato
This commit is contained in:
Jo 2024-12-03 18:38:19 +01:00
parent 4966b26ec4
commit e1bbf4856e
20 changed files with 9 additions and 115 deletions

View file

@ -1,26 +0,0 @@
{
lib,
pkgs,
inputs,
namespace,
config,
...
}: with lib; with lib.${namespace};
let
cfg = config.apps.zed-editor;
zed-fhs = pkgs.buildFHSUserEnv {
name = "zed";
targetPkgs = pkgs:
with pkgs; [
zed-editor
];
runScript = "zed";
};
in {
options.apps.zed-editor = { enable = mkEnableOption "zed-editor"; };
config = mkIf cfg.enable {
home.packages = [zed-fhs];
};
}