🧑💻 Zed configs, Nextcloud as service, moved dev stuff
This commit is contained in:
parent
99c1d855ab
commit
c75db3b717
@ -46,7 +46,6 @@ in
|
|||||||
stremio
|
stremio
|
||||||
fastfetch
|
fastfetch
|
||||||
freetube
|
freetube
|
||||||
nextcloud-client
|
|
||||||
discord
|
discord
|
||||||
nix-prefetch-github # Cmd to get rev and hash from GitHub
|
nix-prefetch-github # Cmd to get rev and hash from GitHub
|
||||||
gimp
|
gimp
|
||||||
|
@ -14,11 +14,11 @@ in
|
|||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
./cava.nix
|
./cava.nix
|
||||||
./default-applications.nix
|
./default-applications.nix
|
||||||
|
./development
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./git.nix
|
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./mpv.nix
|
./mpv.nix
|
||||||
./nixvim
|
./nextcloud.nix
|
||||||
./rofi
|
./rofi
|
||||||
./wlogout
|
./wlogout
|
||||||
./hyprland
|
./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
|
# Autostart
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"${app.browser}"
|
"${app.browser}"
|
||||||
"nextcloud"
|
|
||||||
"${app.terminal}"
|
"${app.terminal}"
|
||||||
"hypridle"
|
"hypridle"
|
||||||
"systemctl --user start hyprpolkitagent"
|
"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.rust-rover
|
||||||
jetbrains.webstorm
|
jetbrains.webstorm
|
||||||
vscodium # TODO set up extensions
|
vscodium # TODO set up extensions
|
||||||
zed-editor
|
|
||||||
# Tools
|
# Tools
|
||||||
git
|
git
|
||||||
rustup
|
rustup
|
||||||
|
Loading…
x
Reference in New Issue
Block a user