🧑💻 Zed configs, Nextcloud as service, moved dev stuff
This commit is contained in:
parent
99c1d855ab
commit
c75db3b717
@ -46,7 +46,6 @@ in
|
||||
stremio
|
||||
fastfetch
|
||||
freetube
|
||||
nextcloud-client
|
||||
discord
|
||||
nix-prefetch-github # Cmd to get rev and hash from GitHub
|
||||
gimp
|
||||
|
@ -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
|
||||
|
7
home-manager/development/default.nix
Normal file
7
home-manager/development/default.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./git.nix
|
||||
./nixvim
|
||||
./zed.nix
|
||||
];
|
||||
}
|
32
home-manager/development/zed.nix
Normal file
32
home-manager/development/zed.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
@ -14,7 +14,6 @@ in
|
||||
# Autostart
|
||||
exec-once = [
|
||||
"${app.browser}"
|
||||
"nextcloud"
|
||||
"${app.terminal}"
|
||||
"hypridle"
|
||||
"systemctl --user start hyprpolkitagent"
|
||||
|
6
home-manager/nextcloud.nix
Normal file
6
home-manager/nextcloud.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
services.nextcloud-client = {
|
||||
enable = true;
|
||||
startInBackground = true;
|
||||
};
|
||||
}
|
@ -6,7 +6,6 @@
|
||||
jetbrains.rust-rover
|
||||
jetbrains.webstorm
|
||||
vscodium # TODO set up extensions
|
||||
zed-editor
|
||||
# Tools
|
||||
git
|
||||
rustup
|
||||
|
Loading…
x
Reference in New Issue
Block a user