Trying something else
This commit is contained in:
16
modules/home/default.nix
Normal file
16
modules/home/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
|
||||
users.atridad = { pkgs, ... }: {
|
||||
imports = [
|
||||
./zed.nix
|
||||
];
|
||||
|
||||
home.stateVersion = "25.11";
|
||||
};
|
||||
};
|
||||
}
|
||||
51
modules/home/zed.nix
Normal file
51
modules/home/zed.nix
Normal file
@@ -0,0 +1,51 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.zed-editor = {
|
||||
enable = true;
|
||||
|
||||
extensions = [
|
||||
"nix"
|
||||
"catppuccin"
|
||||
"catppuccin-icons"
|
||||
"toml"
|
||||
"elixir"
|
||||
"make"
|
||||
"astro"
|
||||
"vue"
|
||||
"latex"
|
||||
"mermaid"
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
icon_theme = "Catppuccin Macchiato";
|
||||
title_bar = {
|
||||
show_sign_in = false;
|
||||
};
|
||||
collaboration_panel = {
|
||||
button = false;
|
||||
};
|
||||
status_bar = {
|
||||
cursor_position_button = false;
|
||||
};
|
||||
disable_ai = true;
|
||||
telemetry = {
|
||||
diagnostics = false;
|
||||
metrics = false;
|
||||
};
|
||||
ui_font_size = 16;
|
||||
buffer_font_size = 15;
|
||||
theme = {
|
||||
mode = "system";
|
||||
light = "One Light";
|
||||
dark = "Catppuccin Macchiato";
|
||||
};
|
||||
languages = {
|
||||
"Nix" = {
|
||||
language_servers = [ "nil" "nixd" ];
|
||||
format_on_save = "on";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user