🧑‍💻 Zed configs, Nextcloud as service, moved dev stuff

This commit is contained in:
Martin Berg Alstad 2025-01-11 20:59:51 +01:00
parent 99c1d855ab
commit c75db3b717
Signed by: martials
GPG Key ID: 706F53DD087A91DE
9 changed files with 47 additions and 5 deletions

View File

@ -46,7 +46,6 @@ in
stremio
fastfetch
freetube
nextcloud-client
discord
nix-prefetch-github # Cmd to get rev and hash from GitHub
gimp

View File

@ -14,11 +14,11 @@ in
inputs.nixvim.homeManagerModules.nixvim
./cava.nix
./default-applications.nix
./development
./fish.nix
./git.nix
./gtk.nix
./mpv.nix
./nixvim
./nextcloud.nix
./rofi
./wlogout
./hyprland

View File

@ -0,0 +1,7 @@
{
imports = [
./git.nix
./nixvim
./zed.nix
];
}

View File

@ -0,0 +1,32 @@
{
programs.zed-editor = {
enable = true;
extensions = [
"html"
"catppuccin"
"toml"
"nix"
"git_firefly"
];
userSettings =
let
theme = import ../../theme.nix;
font = "${theme.nerdFont} Nerd Font";
fontSize = 14;
in
{
autosave = "on_focus_change";
base_keymap = "JetBrains";
ui_font_family = font;
buffer_font_family = font;
ui_font_size = fontSize;
buffer_font_size = fontSize;
theme = {
mode = "system";
light = "Catppuccin Frappé";
dark = "Catppuccin Mocha";
};
lsp.nil.initialization_options.formatting.command = [ "nixfmt" ];
};
};
}

View File

@ -14,7 +14,6 @@ in
# Autostart
exec-once = [
"${app.browser}"
"nextcloud"
"${app.terminal}"
"hypridle"
"systemctl --user start hyprpolkitagent"

View File

@ -0,0 +1,6 @@
{
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
}

View File

@ -6,7 +6,6 @@
jetbrains.rust-rover
jetbrains.webstorm
vscodium # TODO set up extensions
zed-editor
# Tools
git
rustup